From: WonYoung Choi Date: Mon, 9 Jan 2017 08:07:08 +0000 (+0900) Subject: Fix dotnet-build.sh to allow additional arguments of pack command X-Git-Tag: submit/tizen/20170109.080755^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=367c1ad146fb6f5a3281d139a021ed7ebb1a6834;p=platform%2Fcore%2Fdotnet%2Fbuild-tools.git Fix dotnet-build.sh to allow additional arguments of pack command Change-Id: I23a3aa8efbfe3b144c918a7e795e345b1bd52c75 --- diff --git a/Tools/dotnet-build.sh b/Tools/dotnet-build.sh index c0fe8d14..f948cb16 100755 --- a/Tools/dotnet-build.sh +++ b/Tools/dotnet-build.sh @@ -106,7 +106,7 @@ pack() { local CONFIGURATION=$1; shift if [ -f $NUSPEC ]; then - nuget_retry pack $NUSPEC -Version $VERSION -Properties Configuration=$CONFIGURATION + nuget_retry pack $NUSPEC -Version $VERSION -Properties Configuration=$CONFIGURATION $@ fi }