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

Commit

Permalink
fix: -z (dir exists)
Browse files Browse the repository at this point in the history
  • Loading branch information
asdfzxcvbn committed Apr 18, 2024
1 parent a5a3c4c commit ed346a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyzule-ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
if args.t:
print("[*] will use substitute instead of substrate")

os.makedirs(REAL_EXTRACT_DIR)
os.makedirs(REAL_EXTRACT_DIR, exist_ok=True)


def get_plist(path, entry=None):
Expand Down
4 changes: 2 additions & 2 deletions pyzule.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/home/chris/.config/pyzule/venv/bin/python
# pyzule! pretty badly written.. but, it works! github.com/asdfzxcvbn/pyzule
import os
import sys
Expand Down Expand Up @@ -189,7 +189,7 @@
if args.t:
print("[*] will use substitute instead of substrate")

os.makedirs(REAL_EXTRACT_DIR)
os.makedirs(REAL_EXTRACT_DIR, exist_ok=True)


def get_plist(path, entry=None):
Expand Down

0 comments on commit ed346a2

Please sign in to comment.