From: Łukasz Stelmach Date: Tue, 26 Sep 2017 11:03:26 +0000 (+0200) Subject: Prevent shell interpolation of gbs configuration variables X-Git-Tag: submit/devel/20190730.074511~2^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a96961838515a76678b586bb200959d937b959d1;p=tools%2Fdepanneur.git Prevent shell interpolation of gbs configuration variables Change-Id: I25cce8ec04f88e15202a712fff1a45e450342dca Signed-off-by: Łukasz Stelmach --- 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";