From 108b21862ad30f0b0f7903f9e7628de3077d8f9a Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Tue, 15 Oct 2024 20:10:17 +0300 Subject: [PATCH] chg - Push a fix for release config --- Type: chg Breaking: False Doc Required: False Backport Required: False Part: 1/1 --- tools/push.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/push.sh b/tools/push.sh index 830bf73..03643cf 100644 --- a/tools/push.sh +++ b/tools/push.sh @@ -27,6 +27,10 @@ checkerror() { } # This script pushes. Use when you have dotnet installed. +releaseconf=$1 +if [ -z $releaseconf ]; then + releaseconf=Release +fi dotnetpath=`which dotnet` checkerror $? "dotnet is not found"