Show More
@@ -30,6 +30,9 b" if __name__ == '__main__':" | |||
|
30 | 30 | |
|
31 | 31 | args = parser.parse_args() |
|
32 | 32 | |
|
33 | if not os.path.isabs(args.python): | |
|
34 | raise Exception('--python arg must be an absolute path') | |
|
35 | ||
|
33 | 36 | if args.iscc: |
|
34 | 37 | iscc = pathlib.Path(args.iscc) |
|
35 | 38 | else: |
@@ -62,6 +62,9 b" if __name__ == '__main__':" | |||
|
62 | 62 | 'version': args.version, |
|
63 | 63 | } |
|
64 | 64 | |
|
65 | if not os.path.isabs(args.python): | |
|
66 | raise Exception('--python arg must be an absolute path') | |
|
67 | ||
|
65 | 68 | if args.extra_packages_script: |
|
66 | 69 | kwargs['extra_packages_script'] = args.extra_packages_script |
|
67 | 70 | if args.extra_wxs: |
General Comments 0
You need to be logged in to leave comments.
Login now