mirror of
https://github.com/rworkman/slackpkg
synced 2024-11-15 19:47:54 +01:00
post-functions.sh: Invert test for "not no" to "is yes"
Essentially, don't process a "not yes" as an "is yes"
This commit is contained in:
parent
8c6d8b9947
commit
14ce3da94e
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ lookkernel() {
|
|||
Your kernel image was updated. We highly recommend you run: lilo
|
||||
Do you want slackpkg to run lilo now? (Y/n)"
|
||||
answer
|
||||
if [ "$ANSWER" != "n" ] && [ "$ANSWER" != "N" ]; then
|
||||
if [ "$ANSWER" = "y" ] || [ "$ANSWER" = "Y" ]; then
|
||||
/sbin/lilo
|
||||
fi
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue