a68a3e5053
Batch scripts were moving pyc files to the wrong directory
7 lines
166 B
Bash
Executable File
7 lines
166 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/
|