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

Commit

Permalink
Fix wheel script
Browse files Browse the repository at this point in the history
  • Loading branch information
RazerM committed Mar 21, 2016
1 parent 226dc36 commit 184fc50
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .appveyor/install_numpy_scipy.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ def download_wheel(name, version):
filename = '{}-{}-{}-none-{}.whl'.format(name, version, py, arch)

directory = 'astrodynamics-wheels'
os.mkdir(directory)
try:
os.mkdir(directory)
except OSError:
pass

filepath = os.path.join(directory, filename)
url = base_url + filename
Expand Down

0 comments on commit 184fc50

Please sign in to comment.