From 99d04f762e75e5fab411aa140776e7fd8dd36bb6 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Fri, 2 Apr 2021 11:16:59 +0800 Subject: [PATCH] scripts/build_utils.sh: should not quote --mirror option otherwise the URL is not reachable with quotes in it. Signed-off-by: Kefu Chai --- scripts/build_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 7dbfe1d0d..9246e52a5 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 -- 2.47.3