Compare commits
2 commits
f092e4b334
...
dd6a629009
Author | SHA1 | Date | |
---|---|---|---|
dd6a629009 | |||
1bf14be63f |
2 changed files with 30 additions and 24 deletions
|
@ -1,8 +1,8 @@
|
||||||
----------------------------------------------------
|
---------------------------------------------------
|
||||||
| For systemd users: |
|
| For systemd users: |
|
||||||
| This Firefish flavor currently requires Node v21 |
|
| This Firefish flavor currently requires Node v21 |
|
||||||
| PLEASE CHECK YOUR NODE VERSION BEFORE UPGRADING!! |
|
| PLEASE CHECK YOUR NODE VERSION BEFORE UPGRADING!! |
|
||||||
| |
|
| |
|
||||||
| For the detailed explanation, see: |
|
| For the detailed explanation, see: |
|
||||||
| https://post.naskya.net/notes/9ntn882tzcfe1qm6 |
|
| https://post.naskya.net/notes/9ntn882tzcfe1qm6 |
|
||||||
----------------------------------------------------
|
---------------------------------------------------
|
||||||
|
|
|
@ -33,6 +33,10 @@ fi
|
||||||
## show messages
|
## show messages
|
||||||
for message in neko/messages/*; do
|
for message in neko/messages/*; do
|
||||||
file=$(basename -- "${message}")
|
file=$(basename -- "${message}")
|
||||||
|
|
||||||
|
case "${file}" in
|
||||||
|
*'.resolved') ;;
|
||||||
|
*)
|
||||||
if [ ! -f "neko/flags/${file}" ]; then
|
if [ ! -f "neko/flags/${file}" ]; then
|
||||||
if [ "$#" != '1' ] || [ "$1" != '--skip-all-confirmations' ]; then
|
if [ "$#" != '1' ] || [ "$1" != '--skip-all-confirmations' ]; then
|
||||||
say 'There is an important notice!'
|
say 'There is an important notice!'
|
||||||
|
@ -58,6 +62,8 @@ for message in neko/messages/*; do
|
||||||
touch "neko/flags/${file}"
|
touch "neko/flags/${file}"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
say 'Do you use Docker?'
|
say 'Do you use Docker?'
|
||||||
|
|
Loading…
Reference in a new issue