added careful error checking to rev control
[feisty_meow.git] / scripts / rev_control / rgetem.sh
index 6e096279951bbde23b26f24fed54d6c1b7e18da1..37538b6b7f6393dda3fbcfd84137bc98919063de 100644 (file)
@@ -4,17 +4,21 @@
 # working directory.  all the directories under the passed directory will
 # be examined.
 
+source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
+source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
+
+##############
+
 dir="$1"; shift
 if [ -z "$dir" ]; then
   dir=.
 fi
 
-source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
-source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
-
 pushd "$dir" &>/dev/null
+test_or_die "changing to directory: $dir"
 tempfile=$(generate_rev_ctrl_filelist)
 popd &>/dev/null
 
 perform_revctrl_action_on_file "$tempfile" do_update
+test_or_die "running revision control update"