Browse Source

trying to fix git running on unix

Vladislav Folts 12 years ago
parent
commit
00ca2dda1b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build.py

+ 1 - 1
build.py

@@ -5,7 +5,7 @@ import subprocess
 import sys
 
 def run(cmd):
-    p = subprocess.Popen(cmd, stdout = subprocess.PIPE, stderr = subprocess.STDOUT)
+    p = subprocess.Popen(cmd, stdout = subprocess.PIPE, stderr = subprocess.STDOUT, shell = True)
     return p.stdout.read().decode()
 
 def build(out, use_git):