diff options
author | 2023-02-06 21:45:55 +0600 | |
---|---|---|
committer | 2023-02-06 21:45:55 +0600 | |
commit | dab81219994c70025114a9b5f72ca844bbb7c6ea (patch) | |
tree | dbac7ffe8f1704289d2f3e54c2b4fa520c07c098 /build-tools | |
parent | 69cea8f9106821e534776c87443f45defa9caa64 (diff) | |
download | patches-dab81219994c70025114a9b5f72ca844bbb7c6ea.tar.gz patches-dab81219994c70025114a9b5f72ca844bbb7c6ea.zip |
builder: Add repo source & docs
Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
Diffstat (limited to 'build-tools')
-rw-r--r-- | build-tools/config-home/builder/.bash_aliases | 8 | ||||
-rw-r--r-- | build-tools/repo | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/build-tools/config-home/builder/.bash_aliases b/build-tools/config-home/builder/.bash_aliases new file mode 100644 index 0000000..c09a834 --- /dev/null +++ b/build-tools/config-home/builder/.bash_aliases @@ -0,0 +1,8 @@ +if [ -d ~/bin ];then + case ":$PATH:" in + (*:$HOME/bin:*) ;; + (*) export "PATH=$PATH:$HOME/bin";; + esac +fi + +complete -F _reprepro repo diff --git a/build-tools/repo b/build-tools/repo new file mode 100644 index 0000000..46c0207 --- /dev/null +++ b/build-tools/repo @@ -0,0 +1,2 @@ +#!/bin/sh +exec reprepro -b "${REPO_BASE:-$HOME/lets-roll}" "$@" |