Skip to content

Commit 15559e3

Browse files
committed
ci: Trying to fix the windows build on msys2
1 parent 9a510a6 commit 15559e3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/Windows/run-tests.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ cd "$PWD/retdec-regression-tests-framework"
2222
python -m pip install virtualenv
2323
python -m venv .venv
2424

25-
. .venv/Scripts/activate
25+
if [ -d .venv/Scripts ]; then
26+
source .venv/Scripts/activate
27+
else
28+
source .venv/bin/activate
29+
fi
2630
pip3 install -r requirements.txt
2731

2832
python3 ./runner.py

0 commit comments

Comments
 (0)