modified error handling methods
[feisty_meow.git] / scripts / rev_control / rgetem.sh
index 37538b6b7f6393dda3fbcfd84137bc98919063de..eeb86f70b4f77dfc2257cfaf30b5028adcd75750 100644 (file)
@@ -15,10 +15,11 @@ if [ -z "$dir" ]; then
 fi
 
 pushd "$dir" &>/dev/null
-test_or_die "changing to directory: $dir"
+exit_on_error "changing to directory: $dir"
 tempfile=$(generate_rev_ctrl_filelist)
+exit_on_error "generating revision control file list"
 popd &>/dev/null
 
 perform_revctrl_action_on_file "$tempfile" do_update
-test_or_die "running revision control update"
+exit_on_error "running revision control update"