1
0
Fork 0

fix(build): sh-friendly syntax

This commit is contained in:
Sean Sube 2023-01-25 17:06:37 -06:00
parent ce63ef66dd
commit d1ed5c48e8
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
if [ -d onnx_env ];
then
echo "Activating existing venv..."
source onnx_env/bin/activate
. onnx_env/bin/activate
else
echo "Creating new venv..."
python3 -m venv onnx_env