From: Wonyoung Choi Date: Tue, 18 Dec 2018 09:21:43 +0000 (+0900) Subject: [Build] Fix build error when an argument has spaces X-Git-Tag: accepted/tizen/unified/20181219.063319^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2202fac5b760ab7c46b4b3b92f7b5388fa7d045e;p=platform%2Fcore%2Fdotnet%2Fbuild-tools.git [Build] Fix build error when an argument has spaces Change-Id: I4d18f78c0749de9977059a07c85c13fa1f9fe70c --- diff --git a/Tools/dotnet-wrapper.sh b/Tools/dotnet-wrapper.sh index 027d7e7..f785303 100644 --- a/Tools/dotnet-wrapper.sh +++ b/Tools/dotnet-wrapper.sh @@ -6,4 +6,4 @@ export DOTNET_CLI_TELEMETRY_OPTOUT=1 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true export MSBUILDDISABLENODEREUSE=true -$DOTNET_CLI_PATH $@ /nodeReuse:false /p:UseRazorBuildServer=false /p:UseSharedCompilation=false +$DOTNET_CLI_PATH "$@" /nodeReuse:false /p:UseRazorBuildServer=false /p:UseSharedCompilation=false