Skip to content

Commit c675591

Browse files
committed
fix: typo in log message
Signed-off-by: Chao Wang <chaowan@redhat.com>
1 parent 461585a commit c675591

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/redhat/exhort/providers/JavaMavenProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,11 +382,11 @@ private String selectMvnRuntime(final Path manifestPath) {
382382
return mvnw;
383383
} catch (Exception e) {
384384
log.warning(
385-
"Failed to check for mvnw due to: " + e.getMessage() + " Fail back to use mvn");
385+
"Failed to check for mvnw due to: " + e.getMessage() + " Fall back to use mvn");
386386
}
387387
}
388388
}
389-
// If maven wrapper is not requested or not accessible, fail back to use mvn
389+
// If maven wrapper is not requested or not accessible, fall back to use mvn
390390
String mvn = Operations.getExecutable(MVN, ARG_VERSION);
391391
log.fine("using mvn executable from : " + mvn);
392392
return mvn;

0 commit comments

Comments
 (0)