From a96961838515a76678b586bb200959d937b959d1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Stelmach?= Date: Tue, 26 Sep 2017 13:03:26 +0200 Subject: [PATCH] Prevent shell interpolation of gbs configuration variables MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I25cce8ec04f88e15202a712fff1a45e450342dca Signed-off-by: Łukasz Stelmach --- depanneur | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/depanneur b/depanneur index 3539287..790fd70 100755 --- a/depanneur +++ b/depanneur @@ -721,10 +721,10 @@ sub gbs_export { push @args, "--commit=$commit"; } if (! $upstream_branch eq "") { - push @args, "--upstream-branch=$upstream_branch"; + push @args, "--upstream-branch='$upstream_branch'"; } if (! $upstream_tag eq "") { - push @args, "--upstream-tag=$upstream_tag"; + push @args, "--upstream-tag='$upstream_tag'"; } if ($fallback_to_native == 1) { push @args, "--fallback-to-native"; -- 2.34.1