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

Commit

Permalink
fix(ios): dir made if invalid cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
asdfzxcvbn committed Apr 14, 2024
1 parent b8ab044 commit 94af2b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyzule-ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
print("[>] quitting.")
sys.exit()
EXTRACT_DIR = f".pyzule-{time()}"
os.makedirs((REAL_EXTRACT_DIR := os.path.join(os.getcwd(), EXTRACT_DIR)))
REAL_EXTRACT_DIR = os.path.join(os.getcwd(), EXTRACT_DIR)

# i never thought i would write code this bad. im tired.
# oh yeah btw this barely works for shit LMFAO
Expand Down Expand Up @@ -161,6 +161,8 @@
if args.t:
print("[*] will use substitute instead of substrate")

os.makedirs(REAL_EXTRACT_DIR)


def get_plist(path, entry=None):
with open(path, "rb") as f:
Expand Down

0 comments on commit 94af2b0

Please sign in to comment.