X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fcore%2Fvariables.sh;h=3596c0c4f5ae4141c832487dea8019dde4ba868b;hb=d2d0ec214ed52c4d1b631a2ed4b109831ea25b5b;hp=158a76b5798434bc164bd231b4d547f550c88453;hpb=a1a786edd84c7fe37284dad35834f3c011ac0576;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 158a76b5..3596c0c4 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -110,6 +110,11 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org define_yeti_variable TMP=$HOME/.tmp fi + # set up our event logging file for any notable situation to be recorded in. + if [ -z "$FEISTY_MEOW_EVENT_LOG" ]; then + define_yeti_variable FEISTY_MEOW_EVENT_LOG="$TMP/$USER-feisty_meow-events.log" + fi + # set up the top-level for all build creations and logs and such. if [ -z "$FEISTY_MEOW_GENERATED_STORE" ]; then define_yeti_variable FEISTY_MEOW_GENERATED_STORE="$TMP/generated-feisty_meow" @@ -220,8 +225,9 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org fi # add in any site avenger applications that are in the applications folder. if [ -d "$HOME/apps" ]; then - # general search for normal folders at top level + # general search for normal project folders in apps. REPOSITORY_LIST+="$(find "$HOME/apps" -maxdepth 2 -mindepth 2 -iname ".git" -type d -exec dirname {} ';') " + REPOSITORY_LIST+="$(find "$HOME/apps" -maxdepth 2 -mindepth 2 -iname ".svn" -type d -exec dirname {} ';') " # special search for site avenger directories; they have avenger5 as second level. REPOSITORY_LIST+="$(find "$HOME/apps" -maxdepth 2 -mindepth 2 -iname "avenger5" -type d) "