c1de2f768f
Updates build scripts that create python binaries (pyc files) from python scripts using nPython. Also adds *.pyc to gitignore.
7 lines
148 B
Bash
Executable File
7 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
mono nPython.exe -m compileall -lq .
|
|
|
|
cp *.pyc ../Launcher/bin/Debug/
|
|
cp *.pyc ../Launcher/bin/Release/
|
|
cp *.pyc ../Tests/bin/Debug/
|