Skip to content

Commit 0055bc7

Browse files
authored
Improve print formatting of error message (#173)
1 parent 14e5274 commit 0055bc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/edu/wpi/first/nativeutils/sourcelink/SourceLinkPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public void apply(Project project) {
3636
} catch (UnknownTaskException notfound) {
3737
File gitDir = getGitDir(project.getRootProject().getRootDir());
3838
if (gitDir == null) {
39-
System.out.println("No .git directory was found in" + project.getRootProject().getRootDir().toString()
40-
+ "or any parent directories of that directory.");
39+
System.out.println("No .git directory was found in " + project.getRootProject().getRootDir().toString()
40+
+ " or any parent directories of that directory.");
4141
System.out.println("SourceLink generation skipped");
4242
} else {
4343
project.getRootProject().getTasks().register(SOURCE_LINK_ROOT_TASK_NAME, SourceLinkGenerationTask.class,

0 commit comments

Comments
 (0)