check to see if .build_data exists in check_file before running the grep

don't remove the concatenated files if the compression fails
This commit is contained in:
Damien Churchill 2009-04-21 09:27:59 +00:00
parent 10b11f36c7
commit 0e10f608b9
1 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,9 @@ scan() {
}
check_file() {
# No build data is stored so return 1 since we can't make any guesses.
[ ! -e .build_data ] && return 1;
FILE=$1
LAST_BUILD=`grep $FILE .build_data`
if [ $? == 1 ]; then return 1; fi;
@ -31,8 +34,7 @@ build_deluge() {
echo "Building deluge-yc.js"
cat $DELUGE_FILES > deluge-yc.js.tmp
yuicompressor --type=js -o "deluge-yc.js" "deluge-yc.js.tmp"
rm "deluge-yc.js.tmp"
yuicompressor --type=js -o "deluge-yc.js" "deluge-yc.js.tmp" && rm "deluge-yc.js.tmp"
}
build_ext() {