From: Kefu Chai Date: Fri, 2 Apr 2021 03:16:59 +0000 (+0800) Subject: scripts/build_utils.sh: should not quote --mirror option X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=99d04f762e75e5fab411aa140776e7fd8dd36bb6;p=ceph-build.git scripts/build_utils.sh: should not quote --mirror option otherwise the URL is not reachable with quotes in it. Signed-off-by: Kefu Chai --- diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 7dbfe1d0..9246e52a 100644 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -556,7 +556,7 @@ setup_pbuilder() { local opts opts+=" --basetgz $basedir/$DIST.tgz" opts+=" --distribution $DIST" - opts+=" --mirror \"$mirror\"" + opts+=" --mirror $mirror" if [ -n "$use_gcc" ]; then # Newer pbuilder versions set $HOME to /nonexistent which breaks all kinds of # things that rely on a proper (writable) path. Setting this to the system user's $HOME is not enough