From e850f273e57ab61dacccfe3cafa4dc3bcd24f09d Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 2 Dec 2023 06:37:31 -0500 Subject: [PATCH] dos2unix added properly in prep feisty --- scripts/core/prep_feisty_host.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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[@]}" -- 2.34.1