Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Weinfurt <tweinfurt@yahoo.com>2018-01-22 20:19:49 +0300
committerGitHub <noreply@github.com>2018-01-22 20:19:49 +0300
commitfcd0e4fdcd40e6bcce96e87ad4521deb45c5cc9b (patch)
tree618b2395d2171836ff05283224442a8ef43cce78 /publish-packages.sh
parent4362b25337028e6526c9858a131b2684e14fe493 (diff)
replace $* with "$@" to properly preserve spaces in argumnents (#26404)
Diffstat (limited to 'publish-packages.sh')
-rwxr-xr-xpublish-packages.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/publish-packages.sh b/publish-packages.sh
index 7027bd9483..783b930dbb 100755
--- a/publish-packages.sh
+++ b/publish-packages.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
working_tree_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-$working_tree_root/run.sh publish-packages $*
+$working_tree_root/run.sh publish-packages "$@"
exit $?