mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-28 05:31:23 +01:00
17 lines
294 B
Bash
17 lines
294 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "$#" -ne 1 ]; then
|
||
|
FILES="../../js";
|
||
|
else
|
||
|
FILES=$1;
|
||
|
fi
|
||
|
|
||
|
|
||
|
for f in $FILES/*.js;
|
||
|
do
|
||
|
if [[ $f != *".min"* ]]; then
|
||
|
echo "Processing $f ..."
|
||
|
echo "java -jar yuicompressor-2.4.8.jar $f -o ${f%.js}.min.js"
|
||
|
java -jar yuicompressor-2.4.8.jar $f -o ${f%.js}.min.js
|
||
|
fi
|
||
|
done
|