fix make-sfx macos support

This commit is contained in:
ed 2022-11-28 21:38:50 +00:00
parent e357aa546c
commit dc6bde594d
3 changed files with 6 additions and 3 deletions

2
.vscode/launch.py vendored
View file

@ -30,6 +30,8 @@ except:
argv = [os.path.expanduser(x) if x.startswith("~") else x for x in argv]
argv += sys.argv[1:]
if re.search(" -j ?[0-9]", " ".join(argv)):
argv = [sys.executable, "-m", "copyparty"] + argv
sp.check_call(argv)