diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-12-18 21:41:56 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-12-18 21:41:56 +0100 |
commit | c562a316817091b80ac9c7d3efa31067850b03e6 (patch) | |
tree | e610a1c7b61413cdc3f82ae48128598760e2c370 /bin/jsunshrink.sh | |
parent | 538e64c572220bba43960a3073468c0ce3dc5f4c (diff) |
Improved minified files handling, added css minification (#1486988)
Diffstat (limited to 'bin/jsunshrink.sh')
-rwxr-xr-x | bin/jsunshrink.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/jsunshrink.sh b/bin/jsunshrink.sh deleted file mode 100755 index ef1bb47a1..000000000 --- a/bin/jsunshrink.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -JS_DIR=`dirname "$0"`/../program/js - -if [ ! -d "$JS_DIR" ]; then - echo "Directory $JS_DIR not found." - exit 1 -fi - -for fn in app common googiespell list treelist; do - if [ -r "$JS_DIR/${fn}.js.src" ]; then - mv "$JS_DIR/${fn}.js.src" "$JS_DIR/${fn}.js" - echo "Reverted $JS_DIR/${fn}.js" - fi -done |