added is darwin check inside the prep script
authorFred T. Hamster <fred@gruntose.com>
Tue, 14 Nov 2023 15:02:45 +0000 (10:02 -0500)
committerFred T. Hamster <fred@gruntose.com>
Tue, 14 Nov 2023 15:02:45 +0000 (10:02 -0500)
scripts/core/prep_feisty_host.sh
scripts/core/variables.sh

index bbbec053420b89c64590c2316bc7e222dd15716d..d58c4c0629faea78b6f5a8554ccedba65488ace4 100644 (file)
@@ -25,6 +25,9 @@ echo originating folder is $ORIGINATING_FOLDER
 export FEISTY_MEOW_APEX="$(/bin/pwd)"
 echo feisty now apex is FEISTY_MEOW_APEX=$FEISTY_MEOW_APEX
 
+# establish whether this is darwin (MacOS) or not.
+export IS_DARWIN="$(echo $OSTYPE | grep -i darwin)"
+
 ####
 
 # helper scripts...
index 4b4eaa56d613a3d1da7be3ec2b889ee675efebf2..e66a3acaa4665ec23815006214f24b0b7a08ece8 100644 (file)
@@ -74,7 +74,7 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org
   if [ -z "$OS" ]; then
     define_yeti_variable OS=UNIX
   fi
-  define_yeti_variable IS_DARWIN=$(echo $OSTYPE | grep -i darwin)
+  define_yeti_variable IS_DARWIN="$(echo $OSTYPE | grep -i darwin)"
   
   ##############