modified error handling methods
[feisty_meow.git] / scripts / rev_control / rcheckin.sh
index 1c5400fb8562105a439673c01efc0136652e8871..268bed815d110951a207c85df95ab75ec2b22f42 100644 (file)
@@ -15,11 +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)
-test_or_die "generating revision control file list"
+exit_on_error "generating revision control file list"
 popd &>/dev/null
 
 perform_revctrl_action_on_file "$tempfile" do_checkin
-test_or_die "doing a check-in on: $tempfile"
+exit_on_error "doing a check-in on: $tempfile"