mirror of
https://example.com
synced 2024-11-23 08:16:40 +09:00
dev: add --no-confirm option to update.sh
This commit is contained in:
parent
6c78356177
commit
7387ccff14
1 changed files with 15 additions and 11 deletions
|
@ -14,6 +14,9 @@ function running {
|
||||||
}
|
}
|
||||||
|
|
||||||
say "Start upgrading Firefish!"
|
say "Start upgrading Firefish!"
|
||||||
|
|
||||||
|
# Confirm that the server is stopped
|
||||||
|
if [[ $# != 1 ]] || [[ $1 != "--no-confirm" ]]; then
|
||||||
say "Did you stop your server?"
|
say "Did you stop your server?"
|
||||||
read -r -p "[Y/n] > " yn
|
read -r -p "[Y/n] > " yn
|
||||||
case "${yn}" in
|
case "${yn}" in
|
||||||
|
@ -25,6 +28,7 @@ case "${yn}" in
|
||||||
say "uwu~ erai erai!\n"
|
say "uwu~ erai erai!\n"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
# Pull changes
|
# Pull changes
|
||||||
## git pull
|
## git pull
|
||||||
|
|
Loading…
Reference in a new issue