From: Chris Koeritz Date: Sat, 19 May 2018 03:27:51 +0000 (-0400) Subject: added svn projects to checkin list sought for apps X-Git-Tag: 2.140.112^2~23 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=9f3e83fc4e946639c89eeb37b54c21ecc4f40425 added svn projects to checkin list sought for apps --- diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 158a76b5..8eca55eb 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -220,8 +220,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) "