Make rockboxdev.sh abort as soon as an error is encountered

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18923 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2008-10-29 16:02:06 +00:00
parent 3e4c9f760b
commit 593809c1a9

View File

@ -1,5 +1,11 @@
#!/bin/sh
# Abort execution as soon as an error is encountered
# That way the script do not let the user think the process completed correctly
# and leave the opportunity to fix the problem and restart compilation where
# it stopped
set -e
# this is where this script will store downloaded files and check for already
# downloaded files
dlwhere="/tmp/rbdev-dl"