Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
1000 lines wooo
Browse files Browse the repository at this point in the history
  • Loading branch information
Al4ise authored Aug 13, 2021
1 parent 81f0090 commit 9e0eaff
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions azule
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,11 @@ fi

# VERBOSE
if [ -n "$v" ]; then
echo "Path to IPA is $ipadir"
if [ -f "$ipadir" ]; then
echo "Path to IPA is $ipadir"
else
echo "Decrypted $ipadir"
fi
fi

# EXTRACTING IPA
Expand Down Expand Up @@ -753,7 +757,11 @@ if [ -n "$run" ]; then
CFBundleExecutable="$(ExtractPlistValue CFBundleExecutable "$i")"
if [[ -n "$CFBundleExecutable" && "$(otool -l "$(dirname "$i")/$CFBundleExecutable" | grep "cryptid 1")" ]]; then
if ! [[ "$(dirname "$i")/$CFBundleExecutable" =~ .app/PlugIns ]]; then
echo "Fatal Error: $(dirname "$i")/$CFBundleExecutable is encrypted"
if [ "$os" == "iOS" ]; then
echo "App Couldn't be Decrypted. Try running Azule with the "-m" arguement."
else
echo "Fatal Error: $(dirname "$i")/$CFBundleExecutable is encrypted"
fi
exit 1
else
if [ -n "$v" ]; then
Expand Down

0 comments on commit 9e0eaff

Please sign in to comment.