File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/pl/project13/maven/git Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -85,12 +85,12 @@ protected void prepareGitToExtractMoreDetailedReproInformation() throws MojoExec
8585 // more details parsed out bellow
8686 Ref head = git .getRef (Constants .HEAD );
8787 if (head == null ) {
88- throw new MojoExecutionException ("Could not get HEAD Ref, are you sure you've set the dotGitDirectory property of this plugin to a valid path?" );
88+ throw new MojoExecutionException ("Could not get HEAD Ref, are you sure you have set the dotGitDirectory property of this plugin to a valid path?" );
8989 }
9090 revWalk = new RevWalk (git );
9191 ObjectId headObjectId = head .getObjectId ();
9292 if (headObjectId == null ){
93- throw new MojoExecutionException ("Could not get HEAD Ref, are you sure you've some commits in the dotGitDirectory?" );
93+ throw new MojoExecutionException ("Could not get HEAD Ref, are you sure you have some commits in the dotGitDirectory?" );
9494 }
9595 headCommit = revWalk .parseCommit (headObjectId );
9696 revWalk .markStart (headCommit );
You can’t perform that action at this time.
0 commit comments