diff options
Diffstat (limited to 'docker/debian-dev/bootstrap/apt-source/setup.bash')
-rwxr-xr-x | docker/debian-dev/bootstrap/apt-source/setup.bash | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docker/debian-dev/bootstrap/apt-source/setup.bash b/docker/debian-dev/bootstrap/apt-source/setup.bash index 36065f6..60e635b 100755 --- a/docker/debian-dev/bootstrap/apt-source/setup.bash +++ b/docker/debian-dev/bootstrap/apt-source/setup.bash @@ -2,12 +2,11 @@ set -e -dir=$(dirname $0) +dir=$(dirname "$0") if [[ -n $IN_CHINA ]]; then - "$dir/replace-domain.bash" $(cat "$dir/china-source.txt") + "$dir/replace-domain.bash" "$(cat "$dir/china-source.txt")" fi "$dir/install-apt-https.bash" "$dir/replace-http.bash" - |