You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((evaluateOnCommitReference == null) && (evaluateOnCommitResolvedObjectId == null)) {
92
-
thrownewGitCommitIdExecutionException("Could not get " + evaluateOnCommit + " Ref, are you sure you have set the dotGitDirectory property of this plugin to a valid path?");
92
+
thrownewGitCommitIdExecutionException(
93
+
"Could not get " + evaluateOnCommit + " Ref, are you sure you have set the dotGitDirectory " +
94
+
"property of this plugin to a valid path (currently set to " + dotGitDirectory + ")?");
93
95
}
94
96
revWalk = newRevWalk(git);
95
97
ObjectIdheadObjectId;
@@ -100,7 +102,9 @@ public void prepareGitToExtractMoreDetailedRepoInformation() throws GitCommitIdE
100
102
}
101
103
102
104
if (headObjectId == null) {
103
-
thrownewGitCommitIdExecutionException("Could not get " + evaluateOnCommit + " Ref, are you sure you have some commits in the dotGitDirectory?");
105
+
thrownewGitCommitIdExecutionException(
106
+
"Could not get " + evaluateOnCommit + " Ref, are you sure you have some " +
107
+
"commits in the dotGitDirectory (currently set to " + dotGitDirectory + ")?");
0 commit comments