From: Chris Koeritz Date: Sat, 2 Dec 2023 11:37:31 +0000 (-0500) Subject: dos2unix added properly in prep feisty X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=e850f273e57ab61dacccfe3cafa4dc3bcd24f09d dos2unix added properly in prep feisty --- diff --git a/scripts/core/prep_feisty_host.sh b/scripts/core/prep_feisty_host.sh index 29e4f3b0..634b7017 100644 --- a/scripts/core/prep_feisty_host.sh +++ b/scripts/core/prep_feisty_host.sh @@ -203,7 +203,7 @@ if [ "$opsystem_here" == "debianesque" ]; then elif [ "$opsystem_here" == "redhatty" ]; then PAX=(perl-Env perl-File-Which perl-Text-Diff) elif [ "$opsystem_here" == "macos" ]; then - PAX=(dos2unix openssl) + PAX=(openssl) elif [ "$opsystem_here" == "windoze" ]; then PAX=(perl-File-Which perl-Text-Diff) fi @@ -237,13 +237,13 @@ exit_on_error $PHASE_MESSAGE PHASE_MESSAGE="installing additional helper packages" if [ "$opsystem_here" == "debianesque" ]; then - PAX=(screen python3 python3-pip xserver-xorg xorg-docs) + PAX=(screen python3 python3-pip xserver-xorg xorg-docs dos2unix) elif [ "$opsystem_here" == "redhatty" ]; then - PAX=(screen python3 python3-pip xserver-xorg xorg-docs) + PAX=(screen python3 python3-pip xserver-xorg xorg-docs dos2unix) elif [ "$opsystem_here" == "macos" ]; then - PAX=(screen python3 xquartz linuxbrew/xorg/xorg-docs) + PAX=(screen python3 xquartz linuxbrew/xorg/xorg-docs dos2unix) elif [ "$opsystem_here" == "windoze" ]; then - PAX=(screen python3 python3-pip xserver-xorg xorg-docs) + PAX=(screen python3 python3-pip xserver-xorg xorg-docs dos2unix) fi install_system_package "${PAX[@]}"