index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2017-08-02 14:32:30 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-08-02 14:32:30 +0200 |
commit | 93d2b2ee8ae79b565d57f1692f96f37695ef8b39 (patch) | |
tree | bd42cc7643b7bd5ceaff1327d25cb22e0a48486f /conf | |
parent | 8601cfbc675a80160118ada110eb0988f7ae3c59 (diff) |
-rwxr-xr-x | conf/default.conf | 8 |
diff --git a/conf/default.conf b/conf/default.conf index 730481d..bb39d8e 100755 --- a/conf/default.conf +++ b/conf/default.conf @@ -7,9 +7,9 @@ export LANG=C # dirty hack to get this stuff debugable from a bash if [ "x${0##*/}" = "x-bash" ] || [ "x${0##*/}" = "xbash" ] || [ "x${0##*/}" = "xdash" ]; then - base_dir="$(pwd)" + base_dir=$(pwd) else - base_dir="$(dirname "$(readlink -f "$0")")/.." + base_dir=$(printf '%s/..' "$(dirname "$(readlink -f "$0")")") fi . "${base_dir}/bin/common-functions" @@ -42,14 +42,14 @@ master_mirror_sftp_commend='sftp -b- user@mirror' build_log_directory='/srv/http/build-logs' # what should be tried in what order to somehow repair a broken build -straws_that_might_repair_failing_builds="$( +straws_that_might_repair_failing_builds=$( printf '%s\n' \ ':' \ ':clean_chroot:' \ ':mirrored_source:' \ ':with_build_support:' \ ':with_build_support:clean_chroot:' -)" +) # root directory of the webserver webserver_directory='/srv/http' |