summaryrefslogtreecommitdiff
path: root/unrpyc/find-gzip.sh
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2014-03-30 13:42:48 -0400
committerAlex Xu <alex_y_xu@yahoo.ca>2014-03-30 14:03:21 -0400
commitffebbcd2dee04b8c06e90432618e0e013ac5b7dc (patch)
tree7d7d0125b38c67592eb3252b580ecadb6b752512 /unrpyc/find-gzip.sh
parent3adce8c047fb433702223e3fca1c5463f98e4805 (diff)
downloadhtml5ks-ffebbcd2dee04b8c06e90432618e0e013ac5b7dc.tar.xz
html5ks-ffebbcd2dee04b8c06e90432618e0e013ac5b7dc.zip
unrpyc -> ast2json
Diffstat (limited to 'unrpyc/find-gzip.sh')
-rwxr-xr-xunrpyc/find-gzip.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/unrpyc/find-gzip.sh b/unrpyc/find-gzip.sh
deleted file mode 100755
index c70b75a..0000000
--- a/unrpyc/find-gzip.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-if command -v zopfli; then
- :
-elif G=$(command -v gzip); [ -n "$G" ]; then
- echo >&2 "Consider obtaining zopfli (https://github.com/Hello71/zopfli) for higher"
- echo >&2 "compression ratios (about 5% decrease in size of script.json.gz)."
- echo "$G" -9
-else
- echo >&2 "Could not find zopfli or gzip, aborting."
- exit 1
-fi