Skip to content

Commit

Permalink
Dont need ./ for LCP.EXE
Browse files Browse the repository at this point in the history
Signed-off-by: Ronnie Sahlberg <[email protected]>
  • Loading branch information
sahlberg committed Nov 9, 2024
1 parent e6e0dd3 commit cb87897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pop-fe.py
Original file line number Diff line number Diff line change
Expand Up @@ -4153,7 +4153,7 @@ def patch_libcrypt(real_disc_ids, cue_files, img_files, subdir='pop-fe-work/'):
if os.name == 'posix':
subprocess.run(['./lcp', img_files[idx]], check=True)
else:
subprocess.run(['./lcp.exe', img_files[idx]], check=True)
subprocess.run(['lcp.exe', img_files[idx]], check=True)
return cue_files, img_files


Expand Down

0 comments on commit cb87897

Please sign in to comment.