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
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'