From d1ed5c48e8a733d4ffaad47b65c001a09b47b072 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Wed, 25 Jan 2023 17:06:37 -0600 Subject: [PATCH] fix(build): sh-friendly syntax --- common/scripts/make-venv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/make-venv.sh b/common/scripts/make-venv.sh index 3c42cb8d..61e6fdb9 100755 --- a/common/scripts/make-venv.sh +++ b/common/scripts/make-venv.sh @@ -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