summaryrefslogtreecommitdiff
path: root/mkosi.presets/00-base/mkosi.prepare
blob: c056d4fc59db9fd14c3b92d88b8807b9ce9aa032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# SPDX-License-Identifier: LGPL-2.1-or-later
set -e

if [ "$1" = "build" ]; then
    . /etc/os-release

    if [ "$ID" = "centos" ] && [ "$VERSION" = "8" ]; then
        alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
        alternatives --set python3 /usr/bin/python3.9
    fi
fi