Files
quantconnect--lean/Algorithm.Python/build.sh
T
2020-06-02 12:52:28 -03:00

9 lines
348 B
Bash
Executable File

#!/bin/bash
mono nPython.exe -m compileall -lq ../../
cp ../../__pycache__/*.pyc ../../../Launcher/bin/Debug > /dev/null
cp ../../__pycache__/*.pyc ../../../Launcher/bin/Release > /dev/null
cp ../../__pycache__/*.pyc ../../../Tests/bin/Debug > /dev/null
# Script intentionally discards errors. The line below ensures the exit code is 0.
exit 0