From 1991843d8b3843f628eca701c2743e20c18690ae Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Tue, 15 Oct 2024 20:10:14 +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 96ca014..87f3432 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"