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
path: root/run.sh
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 /run.sh
parent4362b25337028e6526c9858a131b2684e14fe493 (diff)
replace $* with "$@" to properly preserve spaces in argumnents (#26404)
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.sh b/run.sh
index bbb5e82f2e..36a209c533 100755
--- a/run.sh
+++ b/run.sh
@@ -14,5 +14,5 @@ __toolRuntime=$__scriptpath/Tools
__dotnet=$__toolRuntime/dotnetcli/dotnet
cd $__scriptpath
-$__dotnet $__toolRuntime/run.exe $__scriptpath/config.json $*
+$__dotnet $__toolRuntime/run.exe $__scriptpath/config.json "$@"
exit $?