You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 25, 2019. It is now read-only.
I had to change the Obfuscate script in order to get a clean compile. I changed it to:
if [ -f "$HOME/.rvm/scripts/rvm" ];
then
source $HOME/.rvm/scripts/rvm
rvm rvmrc trust
rvm rvmrc load
fi
for file in `grep -rl __obfuscate ${SRCROOT}/*.h`; do
objc-obfuscator obfuscate <mykey>
done
for file in `grep -rl __obfuscate ${SRCROOT}/*.m`; do
objc-obfuscator obfuscate <mykey>
done
I had to change the Obfuscate script in order to get a clean compile. I changed it to:
There should not have been a ';' after 'do'