Skip to content

Commit

Permalink
CI: fix the fix for python actually being mildly useful
Browse files Browse the repository at this point in the history
In commit 5c479d7, we deleted bad stuff
that makes python not work. But we missed the case where it is installed
to lib64.
  • Loading branch information
eli-schwartz committed Oct 4, 2023
1 parent 1f000de commit 7143a69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/ciimage/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ dub_fetch() {
}

install_minimal_python_packages() {
rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED
rm -f /usr/lib*/python3.*/EXTERNALLY-MANAGED
python3 -m pip install "${base_python_pkgs[@]}" $*
}

install_python_packages() {
rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED
rm -f /usr/lib*/python3.*/EXTERNALLY-MANAGED
python3 -m pip install "${base_python_pkgs[@]}" "${python_pkgs[@]}" $*
}

0 comments on commit 7143a69

Please sign in to comment.