Skip to content
This repository was archived by the owner on Dec 22, 2020. It is now read-only.

Commit 184fc50

Browse files
committed
Fix wheel script
1 parent 226dc36 commit 184fc50

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: .appveyor/install_numpy_scipy.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ def download_wheel(name, version):
3131
filename = '{}-{}-{}-none-{}.whl'.format(name, version, py, arch)
3232

3333
directory = 'astrodynamics-wheels'
34-
os.mkdir(directory)
34+
try:
35+
os.mkdir(directory)
36+
except OSError:
37+
pass
3538

3639
filepath = os.path.join(directory, filename)
3740
url = base_url + filename

0 commit comments

Comments
 (0)