Commit 5abb06c8 authored by Jason Madden's avatar Jason Madden

The directory "C:/Program Files/Microsoft SDKs/Windows" might not exist on newer images.

parent fd2f37d3
...@@ -127,7 +127,7 @@ install: ...@@ -127,7 +127,7 @@ install:
- ps: "ls \"C:/\"" - ps: "ls \"C:/\""
- ECHO "Installed SDKs:" - ECHO "Installed SDKs:"
- ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\"" - ps: "if(Test-Path(\"C:/Program Files/Microsoft SDKs/Windows\")) {ls \"C:/Program Files/Microsoft SDKs/Windows\";}"
# Install Python (from the official .msi of http://python.org) and pip when # Install Python (from the official .msi of http://python.org) and pip when
# not already installed. # not already installed.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment