Skip to content

Commit

Permalink
extra space removed / comment added
Browse files Browse the repository at this point in the history
  • Loading branch information
irfan committed Mar 27, 2012
1 parent 0af0a1e commit 7608ba4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#/bin/bash

# build.sh is a helper script for compiling/building javascript and css files
# Please update these lines before use it

YUI='../../tools/yuicompressor/build/yuicompressor-2.4.7.jar'
FILES='src/*.js src/*.css'
OUTPUT_DIR='min'
Expand All @@ -9,6 +12,6 @@ do
TYPE=${FILE/*./}
NAME=`basename "$FILE"`
OUTPUT="$OUTPUT_DIR/$NAME"
`java -jar $YUI --type $TYPE -v $FILE -o $OUTPUT`
`java -jar $YUI --type $TYPE -v $FILE -o $OUTPUT`
done

0 comments on commit 7608ba4

Please sign in to comment.