Commit fd01475
committed
fixes a crash in build.bat when the 'dist' folder did not exist
- The error was:
Traceback (most recent call last):
File setup.py, line 61, in <module>
create_windows_exe()
File setup.py, line 13, in create_windows_exe
[os.remove(x) for x in get_file_paths('dist')]
File setup.py, line 10, in get_file_paths
file_paths = [f for f in listdir(folder_name) if isfile(join(folder_name, f))]
FileNotFoundError: [WinError 3] The system cannot find the path specified: 'dist'
- The error occured only on first checkout; once the dist folder was
built this error did not occur.1 parent f667768 commit fd01475
1 file changed
+5
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
11 | | - | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
12 | 15 | | |
13 | 16 | | |
14 | 17 | | |
| |||
0 commit comments