Skip to content

Commit

Permalink
Merge pull request #1 from PorridgePi/main
Browse files Browse the repository at this point in the history
fix: Use copy instead of shutil.copy
  • Loading branch information
itsnebulalol authored Jul 3, 2022
2 parents d687ed9 + ff5efa8 commit 7ff9b2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def main():
path = input("[?] Paste in the path to an IPA in your file system: ")

if os.path.exists(path):
shutil.copy(path, f"{tmpfolder}/app.ipa")
copy(path, f"{tmpfolder}/app.ipa")
else:
print("[-] That file does not exist! Make sure you're using a direct path to the IPA file.")
exit(1)
Expand Down Expand Up @@ -199,4 +199,4 @@ def main():
print("[*] The app will continue to work when rebooted to stock.")

if __name__ == '__main__':
main()
main()

0 comments on commit 7ff9b2e

Please sign in to comment.