replace install line in script

This commit is contained in:
2025-11-12 09:48:15 -06:00
parent e10c95152e
commit 55f1b32e4d

View File

@@ -49,8 +49,7 @@ DEV_FILE="$PANAMA_PATH/setup/packages/development-packages"
if [[ -f "$DEV_FILE" ]]; then if [[ -f "$DEV_FILE" ]]; then
DEV_PACKAGES=$(tr "\n" " " <"$DEV_FILE") DEV_PACKAGES=$(tr "\n" " " <"$DEV_FILE")
log "Installing $DEV_PACKAGES" log "Installing $DEV_PACKAGES"
#sudo dnf install -y $DEV_PACKAGES > /dev/null 2>&1 sudo dnf install -y $DEV_PACKAGES > /dev/null 2>&1
sudo dnf install -y $DEV_PACKAGES
log "Development packages installed!" log "Development packages installed!"
else else
log "Package list was not in specified path: $DEV_FILE" log "Package list was not in specified path: $DEV_FILE"