From feab2538b63249054ee4c5029801b8fa7bb04000 Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Tue, 14 Jan 2025 10:18:58 -0500 Subject: [PATCH] working on annoying skip of pulls --- scripts/rev_control/version_control.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index 1cfc85c6..648b76ab 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -99,9 +99,9 @@ function do_revctrl_checkin() exit_on_error "svn checkin" fi fi - elif [ ! -z "$(seek_writable ".git" "up")" ]; then + elif [ -d ".git" -o ! -z "$(seek_writable ".git" "up")" ]; then topdir="$(seek_writable ".git" "up")" -#echo "got topdir from seeking of '$topdir'" +echo "got topdir from seeking of '$topdir'" if [ ! -z "$topdir" ]; then # jump to the directory above the .git directory, to make git happy. -- 2.34.1