mkalpine: beep when iso is done

This commit is contained in:
Natanael Copa 2009-02-11 14:11:42 +00:00
parent 6dc879f1b4
commit f6212bc4b4
1 changed files with 9 additions and 0 deletions

View File

@ -25,7 +25,16 @@ fi
make -f "$mk" APK_BIN= $@
rc=$?
# beep when done
if [ $rc -eq 0 ]; then
for i in $(seq 0 3); do
echo -n -e "\007"
sleep 0.2
done
fi
# uninstall the stuff we installed
[ -n "$missing" ] && sudo apk del $missing
exit $?