main
Dominik Madarász 2024-08-19 00:17:20 +02:00
parent 4066a622d7
commit 8eabaa22f0
1 changed files with 6 additions and 5 deletions

View File

@ -242,11 +242,6 @@ if "%1"=="push" (
echo Commit was cancelled or failed echo Commit was cancelled or failed
exit /b %ERRORLEVEL% exit /b %ERRORLEVEL%
) )
if not "%2"=="local" (
git push
)
call make.bat vps
call make.bat tidy
@REM sync depot @REM sync depot
git stash git stash
@ -260,6 +255,12 @@ if "%1"=="push" (
git commit -m "sync website" git commit -m "sync website"
git stash pop git stash pop
if not "%2"=="local" (
git push
)
call make.bat vps
call make.bat tidy
exit /b exit /b
) )