X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Fvariables.sh;h=fa2f774b17a79c782c2458593d51309f8771242b;hb=ab6bacb578744ce2a0132af78fbf5dc461cf00d3;hp=2394821ba53874fd9d4d7e99faa555872e150679;hpb=739d4e83d4b72d838e3ee5cd6a3368a08875bedc;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 2394821b..fa2f774b 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -17,6 +17,9 @@ export PS1='\u@\h $ '; # sets the history length and max file size so we can get some long history around here. export HISTSIZE=1000000 export HISTFILESIZE=8000000 + +# make the TERM available to all sub-shells. +export TERM ############## @@ -129,8 +132,8 @@ if [ -z "$NECHUNG" ]; then export NECHUNG=$FEISTY_MEOW_DIR/infobase/fortunes.dat # ensure we use the right kind of secure shell. - export CVS_RSH=$FEISTY_MEOW_SCRIPTS/security/ssh.sh - export GIT_SSH=$FEISTY_MEOW_SCRIPTS/security/ssh.sh +# export CVS_RSH=$FEISTY_MEOW_SCRIPTS/security/ssh.sh +# export GIT_SSH=$FEISTY_MEOW_SCRIPTS/security/ssh.sh # the base checkout list is just to update feisty_meow. additional folder # names can be added in your customized scripts. the space at the end of @@ -190,7 +193,6 @@ if [ -z "$NECHUNG" ]; then ############## if [ ! -z "$SHELL_DEBUG" ]; then echo variables initialization ends....; fi - fi ############## @@ -208,6 +210,6 @@ for i in $FEISTY_MEOW_GENERATED/custom/*.sh; do if [ ! -z "$SHELL_DEBUG" ]; then echo "loading customization: $(basename $(dirname $i))/$(basename $i)" fi - source $i + source "$i" done