Skip to content

Commit

Permalink
Fix venv in ubuntu24 (#1452)
Browse files Browse the repository at this point in the history
Should prevent getting broken Python link inside docker
  • Loading branch information
singiamtel authored Jan 16, 2025
1 parent 5048346 commit ca3d34f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jenkins/daily-tags
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ try {
mkdir -p /local/tmp
case $ARCHITECTURE in
ubuntu24*)
python -m venv /local/tmp/venv
python -m venv --copies /local/tmp/venv
source /local/tmp/venv/bin/activate
PYTHON_USER_OPT=""
;;
Expand Down Expand Up @@ -118,7 +118,7 @@ try {
mkdir -p /local/tmp
case $ARCHITECTURE in
ubuntu24*)
python -m venv /local/tmp/venv
python -m venv --copies /local/tmp/venv
source /local/tmp/venv/bin/activate
PYTHON_USER_OPT=""
;;
Expand Down

0 comments on commit ca3d34f

Please sign in to comment.