Skip to content

Commit 28e992a

Browse files
Use python3 on Linux and Mac
1 parent 6d4327c commit 28e992a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bootstrap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/python3
22

33
from __future__ import print_function
44
import platform
@@ -75,7 +75,7 @@
7575
if platform.system() == "Windows":
7676
os.environ['CYGWIN'] = "nodosfilewarning"
7777

78-
if platform.system() == "Linux":
78+
if (platform.system() == "Linux") or (platform.system() == "Darwin"):
7979
TOOL_COMMAND_PYTHON = "python3"
8080

8181
def log(string):

0 commit comments

Comments
 (0)