deb-update.bash: add linuxbrew

This commit is contained in:
Aminda Suomalainen 2024-07-28 07:25:29 +03:00
parent 4ad1408305
commit 6046dfbb4c
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -60,6 +60,16 @@ if hash dnf 2> /dev/null; then
dnf -v "$@" autoremove dnf -v "$@" autoremove
fi fi
# https://github.com/Homebrew/brew
if [[ -d /home/linuxbrew/.linuxbrew/bin && $(id -u) != 0 ]]; then
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
/home/linuxbrew/.linuxbrew/bin/brew doctor
/home/linuxbrew/.linuxbrew/bin/brew update --quiet
/home/linuxbrew/.linuxbrew/bin/brew upgrade --quiet
else
printf "Either linuxbrew is not installed or running as root, skipping linuxbrew...\n"
fi
if hash rpmconf 2> /dev/null; then if hash rpmconf 2> /dev/null; then
# Tests if there are rpmsave/rpmnew files, hopefully is non-interactive # Tests if there are rpmsave/rpmnew files, hopefully is non-interactive
rpmconf -a -t rpmconf -a -t