added mawk to prep_feisty_host
authorChris Koeritz <fred@gruntose.com>
Sun, 29 May 2022 14:39:28 +0000 (10:39 -0400)
committerChris Koeritz <fred@gruntose.com>
Sun, 29 May 2022 14:39:28 +0000 (10:39 -0400)
hopefully called that on all platforms, but we'll find out.

scripts/core/prep_feisty_host.sh

index 7772749b41ff13967f3e824a093ec3554154d1ac..5e8598f9fb77e212665307585044a5e2d35beea2 100644 (file)
@@ -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