]> git.phdru.name Git - git-scripts.git/commitdiff
Feat(submodules/remove): Improve error message
authorOleg Broytman <phd@phdru.name>
Sat, 8 Apr 2023 15:45:28 +0000 (18:45 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 8 Apr 2023 15:45:28 +0000 (18:45 +0300)
submodules/remove

index 23af550b9c80f65643013f1ae08a39e46081b8ff..4b38d1ae96e6469747cf95ffd36a6a09ca90bda1 100755 (executable)
@@ -8,8 +8,8 @@ fi
 
 cd "`git rev-parse --show-toplevel`" || exit 1
 if [ \! -f .gitmodules ]; then
-    echo "The command must be run in the top-level directory" >&2
-    echo "of a repository with submodules" >&2
+    echo "Cannot find .gitmodules. The command must be run " >&2
+    echo "in the top-level directory of a repository with submodules" >&2
     exit 1
 fi