diff options
-rwxr-xr-x | checkupdate.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/checkupdate.sh b/checkupdate.sh index c12d0799..f5e84388 100755 --- a/checkupdate.sh +++ b/checkupdate.sh @@ -8,6 +8,8 @@ pd=$(pwd) if [ "$nrev" -gt "$orev" ]; then + git checkout MaYor-dev + wget http://www.mayor.hu/download/current/rev.txt -O rev.txt wget http://www.mayor.hu/download/current/md5sum -O mayor-orig/md5sum @@ -34,7 +36,7 @@ if [ "$nrev" -gt "$orev" ]; then git commit -a -m "Rev: $nrev" git tag -a "rev$nrev" -m "Rev: $nrev" - + git checkout master fi |