Skip to content

Commit

Permalink
power shell if statements not working for me here, trying to use batc…
Browse files Browse the repository at this point in the history
…h instead
  • Loading branch information
AndrewAnnex committed Aug 15, 2015
1 parent 366dd18 commit 6b1cbbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ install:

# Now install spiceypy
# if 32bit arch
- ps: IF($PYTHON_ARCH -eq "32") { iex "call 'C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat' x86" }
- IF "%PYTHON_ARCH%"=="32" (call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86) ELSE (ECHO "probably a 64bit build")
# if 64bit arch
- ps: IF($PYTHON_ARCH -eq "64") { iex "call 'C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat' amd64" }
- IF "%PYTHON_ARCH%"=="64" (call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64) ELSE (ECHO "probably a 32bit build")
# - call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
- "%PYTHON%/python setup.py install"

Expand Down

0 comments on commit 6b1cbbf

Please sign in to comment.