We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd7a438 commit 65a7c6eCopy full SHA for 65a7c6e
shelldio.sh
@@ -376,13 +376,13 @@ self_update() {
376
printf "${BLUE}%s${RESET}\n" "Γίνεται αναβάθμιση του shelldio"
377
if git pull --rebase --stat origin stable; then
378
printf "${BLUE}%s${RESET}\n" "Ολοκληρώθηκε η αναβάθμιση του shelldio."
379
- return
+ exit 0
380
else
381
printf "${RED}%s${RESET}\n" 'Κάποιο πρόβλημα παρουσιάστηκε κατά την αναβάθμιση. Δοκίμασε ξανά αργότερα'
382
+ exit 1
383
fi
- exit
384
;;
385
- [Nn]*) exit ;;
+ [Nn]*) exit 0 ;;
386
*) echo "Παρακαλώ απαντήστε με y (ναι) ή n (όχι)" ;;
387
esac
388
}
0 commit comments