mirror of
https://github.com/elitak/nixos-infect
synced 2024-11-10 05:54:20 +00:00
Use if rather than test before rebooting (#35)
* whitespace * Use if rather than test before rebooting When the -z returned false, the script would return its error code, 1, resulting in a failure.
This commit is contained in:
parent
4f31db455e
commit
b95ff459a8
1 changed files with 7 additions and 4 deletions
|
@ -258,4 +258,7 @@ makeConf
|
||||||
makeSwap # smallest (512MB) droplet needs extra memory!
|
makeSwap # smallest (512MB) droplet needs extra memory!
|
||||||
infect
|
infect
|
||||||
removeSwap
|
removeSwap
|
||||||
[[ -z "$NO_REBOOT" ]] && reboot
|
|
||||||
|
if [[ -z "$NO_REBOOT" ]]; then
|
||||||
|
reboot
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue