From 367c1ad146fb6f5a3281d139a021ed7ebb1a6834 Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Mon, 9 Jan 2017 17:07:08 +0900 Subject: [PATCH] Fix dotnet-build.sh to allow additional arguments of pack command Change-Id: I23a3aa8efbfe3b144c918a7e795e345b1bd52c75 --- Tools/dotnet-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.34.1