8 lines
194 B
Bash
Executable file
8 lines
194 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ -x /usr/bin/yui-compressor ]]; then
|
|
exec /usr/bin/yui-compressor "$1" -o "$2"
|
|
else
|
|
java -jar ~/apps/yuicompressor-2.4.2/build/yuicompressor-2.4.2.jar "$1" -o "$2"
|
|
fi
|
|
|