mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
13 lines
260 B
Bash
Executable File
13 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Minify angular-forms.js
|
|
#
|
|
# ./compile.sh
|
|
#
|
|
|
|
if [ -f ../angular-forms.min.js ]; then
|
|
rm ../angular-forms.min.js
|
|
fi
|
|
java -jar ../bower_components/closure-compiler/compiler.jar --js ../angular-forms.js --js_output_file ../angular-forms.min.js
|