From cadb0b69b70347408a653048b0c3687399f7650f Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 5 Jul 2020 11:11:37 -0700 Subject: [PATCH] Look for a pre-existing .nogit-tmp directory Just to be extra careful, force the user to clean up any remnant of a previously-aborted run before we dive in again with potentially unintended consquences. --- nogit | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nogit b/nogit index 102b8c7..d55124d 100755 --- a/nogit +++ b/nogit @@ -63,6 +63,12 @@ nogit_clone() return 1 fi + if [ -e $NOGIT_DIR_TMP ]; then + echo "Error: $NOGIT_DIR_TMP already exists. Was a previosu clone interrupted?" + echo "You'll want to clean that up before trying again." + return 1 + fi + # Clone the repository into a temporary directory mkdir $NOGIT_DIR_TMP cd $NOGIT_DIR_TMP -- 2.43.0