diff options
Diffstat (limited to 'unrpyc')
-rw-r--r-- | unrpyc/README | 2 | ||||
-rwxr-xr-x | unrpyc/find-gzip.sh | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/unrpyc/README b/unrpyc/README index 9e4ef50..ba1791f 100644 --- a/unrpyc/README +++ b/unrpyc/README @@ -8,7 +8,7 @@ How to use: 2. Execute "2to3 -w renpy/*.py". 3. Put the rpyc files from the official KS distribution in here. 4. Run "make" with appropriate -j options (yay auto-parallelization) -5. Run "make install". Alternatively, move "script.json" into /www/scripts. +5. Run "make install". If you're on Windows, sucks for you. Use a better OS. diff --git a/unrpyc/find-gzip.sh b/unrpyc/find-gzip.sh index cb65dc9..de6d19e 100755 --- a/unrpyc/find-gzip.sh +++ b/unrpyc/find-gzip.sh @@ -1,11 +1,10 @@ #!/bin/sh if command -v zopfli; then - printf "%s" "$(command -v zopfli)" + : elif command -v gzip; then echo >&2 "Consider obtaining zopfli (https://code.google.com/p/zopfli/)" echo >&2 "for higher compression ratios (about 5% decrease in size of" echo >&2 "script.json.gz)." - printf "%s" "$(command -v gzip) -9" else echo >&2 "Could not find zopfli or gzip, aborting." exit 1 |