From: Chris Koeritz Date: Wed, 11 Oct 2017 18:05:19 +0000 (-0400) Subject: flipping repository list idea around X-Git-Tag: 2.140.90~144 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=05ebf33c6a536bed180720442e488a91ae8e808c;p=feisty_meow.git flipping repository list idea around it seems like we should no longer automatically check in feisty meow for all users, since most will hopefully have it installed system-wide, where users cannot update any files. additionally, most users don't have write permission anyway. since we really want to move towards a more distribution oriented approach, it seems better to take feisty_meow off the repository list. users who want it automatically updated from and/or checked in to git can add it back in their custom versions. --- diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 86cfe17b..3caa2067 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -207,7 +207,8 @@ if [ -z "$CORE_VARIABLES_LOADED" ]; then # names can be added in your customized scripts. the space at the end of # this variable is important and allows users to extend the list like: # define_yeti_variable REPOSITORY_DIR+="muppets configs" - define_yeti_variable REPOSITORY_LIST="$(basename $FEISTY_MEOW_APEX) " +#old: define_yeti_variable REPOSITORY_LIST="$(basename $FEISTY_MEOW_APEX) " + define_yeti_variable REPOSITORY_LIST= # initializes the feisty meow build variables, if possible. function initialize_build_variables() diff --git a/scripts/customize/fred/fred_variables.sh b/scripts/customize/fred/fred_variables.sh index 1906df4f..35f81ed8 100644 --- a/scripts/customize/fred/fred_variables.sh +++ b/scripts/customize/fred/fred_variables.sh @@ -17,7 +17,7 @@ if [ -z "$USER_CUSTOMIZATIONS_LOADED" ]; then # add a bunch of folders to the list for checkin & checkout. these are # definitely personal, and some of them are fairly dated (the yeti and # hoople folders, for example). - REPOSITORY_LIST+="cloud ebooks web active/webwork" + REPOSITORY_LIST+="$(basename $FEISTY_MEOW_APEX) cloud ebooks web active/webwork" # point to our local certificate for ssh usage. export SVN_SSH="ssh -i $HOME/.ssh/id_dsa_sourceforge"