Commit and push now exits afterwards.

This commit is contained in:
2022-10-18 20:50:00 +02:00
parent 16bb404169
commit 4367e792bf

View File

@@ -22,7 +22,7 @@ select yn in "Build" "Build and Upgrade" "Commit and push" "Exit"; do
case $yn in
Build ) build;;
"Build and Upgrade" ) build --upgrade;;
"Commit and push" ) git commit -a && git push;;
"Commit and push" ) git commit -a && git push && exit;;
Exit ) exit;;
esac
done