Fix fedora 39 support.
This commit is contained in:
parent
3dcca6591b
commit
2f8b35f79e
|
@ -6,7 +6,11 @@
|
|||
set -e
|
||||
|
||||
if [ -z "$CUTEKIT_PYTHON" ]; then
|
||||
export CUTEKIT_PYTHON="python3.11"
|
||||
if command -v python3.11 &> /dev/null; then
|
||||
export CUTEKIT_PYTHON="python3.11"
|
||||
else
|
||||
export CUTEKIT_PYTHON="python3"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ ! -d "/tools/venv" ]; then
|
||||
|
|
|
@ -71,7 +71,7 @@ IMAGES: dict[str, Image] = {
|
|||
"fedora:39",
|
||||
[
|
||||
"dnf update -y",
|
||||
"dnf install -y python3 python3-pip python3-venv ninja-build make automake gcc gcc-c++ kernel-devel",
|
||||
"dnf install -y python3 python3-pip ninja-build make automake gcc gcc-c++ kernel-devel",
|
||||
],
|
||||
),
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue