From 7c0f7da17305e9b330b1370e6af250df0b72cca9 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sun, 29 May 2022 10:39:28 -0400 Subject: [PATCH] added mawk to prep_feisty_host hopefully called that on all platforms, but we'll find out. --- scripts/core/prep_feisty_host.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/scripts/core/prep_feisty_host.sh b/scripts/core/prep_feisty_host.sh index 7772749b..5e8598f9 100644 --- a/scripts/core/prep_feisty_host.sh +++ b/scripts/core/prep_feisty_host.sh @@ -91,22 +91,25 @@ PHASE_MESSAGE="installing code builder packages" if whichable apt; then # ubuntu or debian or other apt-based OSes... - sudo apt install build-essential librtmp-dev libcurl4-gnutls-dev libssl-dev + sudo apt install mawk build-essential librtmp-dev libcurl4-gnutls-dev libssl-dev exit_on_error $PHASE_MESSAGE elif whichable yum; then # rpm based with yum available... - sudo yum install gcc gcc-c++ openssl-devel.x86_64 curl-devel + sudo yum install mawk gcc gcc-c++ openssl-devel.x86_64 curl-devel exit_on_error $PHASE_MESSAGE elif [ ! -z "$IS_DARWIN" ]; then # macos based... #hmmm: still working on these... - brew install gpg meld openjdk + brew install mawk gpg meld openjdk exit_on_error $PHASE_MESSAGE elif [ "$OS" == "Windows_NT" ]; then # windows-based with cygwin (or we'll fail out). +echo need to fix apt cyg install list. #hmmm: unknown list needed still... - apt-cyg install fugazi combustinatorinibasil scampnific +# actually it's not unknown; it's in our docs as a separate file for cygwin. +# plug those packages into here please. + apt-cyg install mawk exit_on_error $PHASE_MESSAGE fi -- 2.34.1