Update pip and cargo on ubuntu and termux

main
Marko Korhonen 8 months ago
parent 38097407cd
commit bd7c5020f9
No known key found for this signature in database
GPG Key ID: A7F78BCB859CD890

@ -181,8 +181,10 @@ update() {
doas apt update && doas apt full-upgrade -y && doas apt autoremove -y && doas apt autoclean -y
{%@@ elif distro_id == "termux" @@%}
pkg update && pkg upgrade --yes
pip install --upgrade $(pip list --outdated | tail -n +3 | awk '{print $1}')
cargo install-update -a
{%@@ endif @@%}
{%@@ if distro_id == "termux" or distro_id == "ubuntu" @@%}
pip-update-installed
cargo-update-installed
{%@@ endif @@%}
}
@ -196,6 +198,14 @@ update() {
{%@@ endif @@%}
}
pip-update-installed() {
pip install --upgrade $(pip list --outdated | tail -n +3 | awk '{print $1}')
}
cargo-update-installed() {
cargo install-update -a
}
{%@@ if profile == "Moria" @@%}
repo() {
aur sync -Su --margs --noconfirm

Loading…
Cancel
Save