Skip to content

Commit 2d01821

Browse files
eli-schwartznirbheek
authored andcommitted
CI: fix the fix for python actually being mildly useful
In commit 5c479d7, we deleted bad stuff that makes python not work. But we missed the case where it is installed to lib64.
1 parent e03bcf7 commit 2d01821

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/ciimage/common.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ dub_fetch() {
3939
}
4040

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

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

0 commit comments

Comments
 (0)