We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e79c8dd commit 2be9adaCopy full SHA for 2be9ada
[refs]
@@ -1,5 +1,5 @@
1
---
2
-refs/heads/master: 962ea9b026c0646aa08eae97d768526615faf73c
+refs/heads/master: 05f920b5e674497ed92921e57131c4887c8e9cef
3
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
4
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
5
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
trunk/test/PlaygroundTransform/Inputs/not.py
@@ -7,7 +7,8 @@
7
sys.exit(0)
8
9
try:
10
- subprocess.check_call(shlex.split(sys.argv[1]))
+ isPosix = (sys.platform != "win32")
11
+ subprocess.check_call(shlex.split(sys.argv[1], posix=isPosix))
12
sys.exit(1)
13
except subprocess.CalledProcessError as e:
14
0 commit comments