fix versions

This commit is contained in:
David Young
2026-04-29 15:00:05 -06:00
parent c8d25e1dbf
commit 78b1d32e69
3 changed files with 20 additions and 11 deletions

View File

@@ -40,7 +40,24 @@ else
yay -Sua --noconfirm
fi
# Will need to update the downloaded binaries and the compiled apps
# In the area below...
HAMPACK_DIR="$HOME/.local/share/HamPack"
echo "Pulling latest HamPack configuration..."
git -C "$HAMPACK_DIR" pull
echo "Installing any new packages..."
source "$HAMPACK_DIR/utils.sh"
source "$HAMPACK_DIR/packages.conf"
install_packages "${UTILITIES[@]}"
install_packages "${APPLICATIONS[@]}"
echo "Installing any new Flatpaks..."
source "$HAMPACK_DIR/install-flatpaks.sh"
echo "Installing any new or updated compiled applications..."
bash "$HAMPACK_DIR/install-compiled.sh"
echo "Installing any new or updated pre-built binaries..."
bash "$HAMPACK_DIR/install-binaries.sh"
echo "Done. You probably want to reboot your system..."