We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a510a6 commit 15559e3Copy full SHA for 15559e3
.github/workflows/Windows/run-tests.sh
@@ -22,7 +22,11 @@ cd "$PWD/retdec-regression-tests-framework"
22
python -m pip install virtualenv
23
python -m venv .venv
24
25
-. .venv/Scripts/activate
+if [ -d .venv/Scripts ]; then
26
+ source .venv/Scripts/activate
27
+else
28
+ source .venv/bin/activate
29
+fi
30
pip3 install -r requirements.txt
31
32
python3 ./runner.py
0 commit comments