fix(ublue-update): Install 'python3-pip' if it's not already installed (#108)
This commit is contained in:
parent
cb66d4562a
commit
122d436f21
1 changed files with 6 additions and 0 deletions
|
|
@ -26,6 +26,12 @@ if [[ -f "$RPM_OSTREE_CONFIG" ]]; then
|
|||
fi
|
||||
fi
|
||||
systemctl disable rpm-ostreed-automatic.timer
|
||||
|
||||
# Install python3-pip if it's not already installed
|
||||
if ! rpm -q python3-pip > /dev/null; then
|
||||
rpm-ostree install python3-pip
|
||||
fi
|
||||
|
||||
# topgrade is REQUIRED by ublue-update to install
|
||||
pip install --prefix=/usr topgrade
|
||||
rpm-ostree install ublue-update
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue