cleaned debugging noise, better naming
authorChris Koeritz <fred@gruntose.com>
Sun, 7 Jan 2018 19:36:01 +0000 (14:36 -0500)
committerChris Koeritz <fred@gruntose.com>
Sun, 7 Jan 2018 19:36:01 +0000 (14:36 -0500)
scripts/rev_control/version_control.sh
scripts/site_avenger/shared_site_mgr.sh
scripts/site_avenger/standup.sh

index ff2f7bed81ba425fae486e64c03665d60c918976..8ec547f35d5e35a992edc28e49be323f8a901990 100644 (file)
@@ -16,8 +16,6 @@ source "$FEISTY_MEOW_SCRIPTS/tty/terminal_titler.sh"
 # feature appeared in git 2.6 and xenial claims it has git version 2.7.4.  eventually,
 # this version test can go away.
 gitvertest="$(git version | sed -e 's/git version [0-9]\.//' | sed -e 's/\.[0-9][0-9]*$//' )"
-#hmmm: temp below!
-echo gitvertest is $gitvertest
 if (( $gitvertest >= 11 )); then
   # auto-stash is not available until 2.6 for git, but ubuntu is misreporting or using a
   # differing version number somehow.  we are sure autostash was missing on ubuntu xenial
index a82ae98d2345c91fc6179fd0d6ae61a4f5ec19c8..94a4f792d8bef9638cfc14d506a6db48e9b355a5 100644 (file)
@@ -354,7 +354,7 @@ function update_composer_repository()
 # fixes the ownership for a site avenger or php application.
 # this almost certainly will require sudo capability, if there are any ownership problems
 # that need to be resolved.
-function fix_ownership()
+function fix_appdir_ownership()
 {
   local appsdir="$1"; shift
   local dir="$1"; shift
index a9b1a91b24f924a2db3a137dd161db52ecd57638..cd2f689056cb674cb4a075fd7fdd2a3ae6749df9 100644 (file)
@@ -94,7 +94,7 @@ sep
 
 # hmmm: pass the real user name who should own the files?
 # hmmm: "$(logname)" $USER works, but logname wasn't?
-fix_ownership "$BASE_APPLICATION_PATH" "$APPLICATION_NAME" 
+fix_appdir_ownership "$BASE_APPLICATION_PATH" "$APPLICATION_NAME" 
 
 sep