From 93d2b2ee8ae79b565d57f1692f96f37695ef8b39 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 2 Aug 2017 14:32:30 +0200 Subject: remove unnecessary and confusing quotes --- conf/default.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'conf') 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' -- cgit v1.2.3