mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-03-23 17:03:37 -04:00
17 lines
235 B
Batchfile
17 lines
235 B
Batchfile
@echo off
|
|
setlocal EnableDelayedExpansion
|
|
|
|
call verify_clean.bat
|
|
if errorlevel 1 (exit /b 1)
|
|
|
|
call run.bat
|
|
if errorlevel 1 (exit /b 1)
|
|
|
|
call verify_clean.bat
|
|
if errorlevel 1 (exit /b 1)
|
|
|
|
git push
|
|
if errorlevel 1 (exit /b 1)
|
|
|
|
exit /b 0
|