diff options
Diffstat (limited to 'etc/bootstrap/bbot-bootstrap-freebsd.sh')
-rwxr-xr-x | etc/bootstrap/bbot-bootstrap-freebsd.sh | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/etc/bootstrap/bbot-bootstrap-freebsd.sh b/etc/bootstrap/bbot-bootstrap-freebsd.sh index 497225e..4c19435 100755 --- a/etc/bootstrap/bbot-bootstrap-freebsd.sh +++ b/etc/bootstrap/bbot-bootstrap-freebsd.sh @@ -11,12 +11,17 @@ if ! jobs="$(sysctl -n hw.ncpu)"; then jobs=1 fi +# Note: bootstrap script options must come before build options. +# "$(dirname "$0")/bbot-bootstrap.sh" \ - --make gmake \ - --make "-j$jobs" \ - "$@" + "$@" \ + --make gmake \ + --make "-j$jobs" -# Wait a bit and shutdown. +# If success, wait a bit and shutdown. Otherwise leave the machine running +# for investigation. # -sleep 5 -sudo shutdown -h now +if test "$?" -eq 0; then + sleep 5 + sudo shutdown -h now +fi |