fix building deluge-yc.js, was including $ALL_FILES rather than

$DELUGE_FILES in the cat
This commit is contained in:
Damien Churchill 2009-04-21 07:15:32 +00:00
parent c17af41940
commit b72ec252af
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ build_deluge() {
[ $NEEDS_BUILD == false ] && return 0
echo "Building deluge-yc.js"
cat $ALL_FILES > deluge-yc.js.tmp
cat $DELUGE_FILES > deluge-yc.js.tmp
yuicompressor --type=js -o "deluge-yc.js" "deluge-yc.js.tmp"
rm "deluge-yc.js.tmp"
}