We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e5274 commit 0055bc7Copy full SHA for 0055bc7
1 file changed
src/main/java/edu/wpi/first/nativeutils/sourcelink/SourceLinkPlugin.java
@@ -36,8 +36,8 @@ public void apply(Project project) {
36
} catch (UnknownTaskException notfound) {
37
File gitDir = getGitDir(project.getRootProject().getRootDir());
38
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.");
+ System.out.println("No .git directory was found in " + project.getRootProject().getRootDir().toString()
+ + " or any parent directories of that directory.");
41
System.out.println("SourceLink generation skipped");
42
} else {
43
project.getRootProject().getTasks().register(SOURCE_LINK_ROOT_TASK_NAME, SourceLinkGenerationTask.class,
0 commit comments