File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
modules/core/src/main/scala/org/scalasteward/core/application Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -41,14 +41,20 @@ final class SelfCheckAlg[F[_]](implicit
4141
4242 private def checkGitBinary : F [Unit ] =
4343 gitAlg.version.attempt.flatMap {
44- case Right (output) => logger.info(s " Using $output" )
45- case Left (throwable) => logger.warn(throwable)(" Failed to execute git" )
44+ case Right (output) => logger.info(s " Using $output" )
45+ case Left (throwable) =>
46+ logger.warn(throwable)(
47+ " Failed to execute git -- make sure it is on the PATH; following the detailed exception:"
48+ )
4649 }
4750
4851 private def checkScalafmtBinary : F [Unit ] =
4952 scalafmtAlg.version.attempt.flatMap {
50- case Right (output) => logger.info(s " Using $output" )
51- case Left (throwable) => logger.warn(throwable)(" Failed to execute scalafmt" )
53+ case Right (output) => logger.info(s " Using $output" )
54+ case Left (throwable) =>
55+ logger.warn(throwable)(
56+ " Failed to execute scalafmt -- make sure it is on the PATH; following the detailed exception:"
57+ )
5258 }
5359
5460 private def checkUrlChecker : F [Unit ] =
You can’t perform that action at this time.
0 commit comments