From 95ddf70a4d403b9c263fecbe979cd4efe2d881fa Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Wed, 23 May 2018 22:07:31 -0400 Subject: [PATCH] fixed no checkin message --- scripts/rev_control/version_control.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index 2331b3a4..737f314c 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -88,7 +88,7 @@ function do_revctrl_checkin() exit_on_error "updating repository; this issue should be fixed before check-in." if [ -f ".no-checkin" ]; then # echo -ne "\nskipping check-in due to presence of .no-checkin sentinel file: $directory" - tell_no_checkin + $tell_no_checkin else $blatt_report cvs ci . @@ -101,7 +101,7 @@ function do_revctrl_checkin() exit_on_error "updating repository; this issue should be fixed before check-in." if [ -f ".no-checkin" ]; then # echo -ne "\nskipping check-in due to presence of .no-checkin sentinel file: $directory" - tell_no_checkin + $tell_no_checkin else $blatt_report svn ci . @@ -116,7 +116,7 @@ function do_revctrl_checkin() if [ -f ".no-checkin" ]; then # echo -ne "\nskipping check-in due to presence of .no-checkin sentinel file: $directory" - tell_no_checkin + $tell_no_checkin else $blatt_report -- 2.34.1