typo label goto

This commit is contained in:
Samuele E. Locatelli
2020-10-26 18:21:06 +01:00
parent 9accacf2ed
commit 1879d441c3
+5 -5
View File
@@ -15,28 +15,28 @@ if %pushRemote% == 2 ( goto case_2 )
if %pushRemote% == 3 ( goto case_3 )
REM Faccio push condizionali
case_0:
:case_0
git push . %baseBranch%:develop
goto end_call
case_1:
:case_1
git push . %baseBranch%:master
git push gitlab.steamware %baseBranch%:%baseBranch%
git push gitlab.steamware %baseBranch%:develop
goto end_call
case_2:
:case_2
git push . %baseBranch%:beta
git push gitlab.steamware %baseBranch%:master
git push gitlab.steamware %baseBranch%:beta
goto end_call
case_3:
:case_3
git push . %baseBranch%:stable
git push gitlab.steamware %baseBranch%:stable
goto end_call
end_call:
:end_call
ECHO on
REM Done!