Skip to content

Commit b6bd97e

Browse files
author
consultit
committed
install/run.py fixed.
1 parent 6197f18 commit b6bd97e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/run.py

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def cmake(platform_dir, src_dir, arg):
1010
os.chdir(platform_dir) # go to platform directory
1111
cmd = "cmake " + arg + " ../" + src_dir
1212
print("cmd")
13-
subprocess.call(cmd) # run cmake
13+
subprocess.call(cmd, shell=True) # run cmake
1414

1515
def clean(platform_dir):
1616
if os.path.exists(platform_dir):

0 commit comments

Comments
 (0)