From 61d57f21132c65edb67be3f29e1c06b0a87ee6c6 Mon Sep 17 00:00:00 2001 From: Stephane Fillod Date: Tue, 16 Mar 2021 11:39:02 +0100 Subject: [PATCH] Update cvs2git-migrator.sh Fix access to the script git-move-refs.py On my system, this script is not in my PATH, hence the need for a relative path. --- cvs2git-migrator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvs2git-migrator.sh b/cvs2git-migrator.sh index 3f52334..40729a5 100755 --- a/cvs2git-migrator.sh +++ b/cvs2git-migrator.sh @@ -336,7 +336,7 @@ if [[ -e "$PROJECT_DIR/git-blob.dat" && -e "$PROJECT_DIR/git-dump.dat" ]]; then && cd $PROJECT_NAME.git \ && cat ../git-blob.dat ../git-dump.dat | \ git fast-import \ - && git-move-refs.py \ + && ../../external/git-move-refs.py \ && git gc --prune=now \ && echo "Created Bare Git Repository from CVS2GIT Dump in $PROJECT_DIR/$PROJECT_NAME.git"