From 5ec24cc9fde185380b84c41c2b67ec05d0079919 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Sat, 10 Jul 2021 22:40:40 +0800 Subject: [PATCH] scripts/build_utils.sh: quote $PROFILES otherwise the following "--use-network" would be taken as a profile, and "yes" is used as the path to package's dsc file. 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 4d6af252..582d3c0a 100644 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -922,7 +922,7 @@ build_debs() { --distribution $DIST \ --basetgz $pbuilddir/$DIST.tgz \ --buildresult $releasedir/$cephver \ - --profiles $PROFILES \ + --profiles "$PROFILES" \ --use-network yes \ $releasedir/$cephver/ceph_$bpvers.dsc -- 2.47.3