diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2017-01-29 15:05:43 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2017-01-29 15:05:43 -0800 |
commit | 01c1b94c09355e8ac95086b783a8b141f3d7e4f8 (patch) | |
tree | 870d4b240747f29fed04199df5b5a1acb6eefb92 /makefile | |
parent | e5f70bc138d8a794fffa6e33801dba160189001d (diff) |
Don't strip the binary when releasing beta builds.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -180,7 +180,7 @@ MobileCydia: sysroot $(object) entitlements.xml Objects/libapt64.a @mkdir -p bins @cp -a $@ bins/$@-$(version) @echo "[strp] $@" - @strip $@ + @grep '~' <<<"$(version)" >/dev/null && echo "skipping..." || strip $@ @echo "[uikt] $@" @./uikit.sh $@ @echo "[sign] $@" |