Skip to content

Commit

Permalink
Python style
Browse files Browse the repository at this point in the history
  • Loading branch information
albertz committed Oct 3, 2018
1 parent 54549a8 commit 0d785d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
from glob import glob

# Compile core module.
sysExec(["./core/compile.py"])
sysExec(["cp", "core/musicplayer.so", "musicplayer.so"])
sys_exec(["./core/compile.py"])
sys_exec(["cp", "core/musicplayer.so", "musicplayer.so"])


sysExec(["mkdir","-p","build"])
sys_exec(["mkdir", "-p", "build"])
os.chdir("build/")

# Compile _gui.so.
Expand Down

0 comments on commit 0d785d4

Please sign in to comment.