From 032fd9769a7d5bd233b5ec6ecc691bbcee60965c Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Fri, 17 Nov 2017 21:17:54 -0500 Subject: [PATCH] helper script for fred --- scripts/site_avenger/clean_mapsdemo.sh | 42 ++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 scripts/site_avenger/clean_mapsdemo.sh diff --git a/scripts/site_avenger/clean_mapsdemo.sh b/scripts/site_avenger/clean_mapsdemo.sh new file mode 100644 index 00000000..5054cdd7 --- /dev/null +++ b/scripts/site_avenger/clean_mapsdemo.sh @@ -0,0 +1,42 @@ +#!/bin/bash + +# some code i wrote to add to revamp that turned out to be unsuitable. +# but it corrects a problem in cakelampvm v002 release that i find annoying, +# so here it is as its own file. + +# clean out some old files that were not checked in in mapsdemo. +echo Doing some git repository maintenance in fred account. +# +# change over to fred folder +pushd /home/fred +test_or_die "changing dir to fred's home; what have you done with fred?" + +pushd apps/mapsdemo/avenger5 +test_or_die "changing dir to mapsdemo app" + +rpuffer . &>/dev/null +if [ $? -ne 0 ]; then + # it seems our old files are still conflicting this. + if [ -f config/config_google.php ]; then + \rm -f config/config_google.php + test_or_die "removing old config for google" + fi + if [ -f config/app.php ]; then + \rm -f config/app.php + test_or_die "removing old config for app" + fi + + git reset --hard HEAD + test_or_die "resetting git's hard head" + + rpuffer . +#hmmm: use output saver thing when that exists. + test_or_die "puffing out mapsdemo app after inadequate corrective action was taken" +fi + +popd + +popd +#...coolness, if we got to here. + + -- 2.34.1