We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 43d0025 + 135e9f6 commit ffee267Copy full SHA for ffee267
src/main/java/com/bazel_diff/main.java
@@ -111,6 +111,10 @@ public Integer call() throws IOException {
111
System.out.println("finalHashesJSONPath does not exist! Exiting");
112
return ExitCode.USAGE;
113
}
114
+ if (outputPath == null) {
115
+ System.out.println("outputPath was not provided! Exiting");
116
+ return ExitCode.USAGE;
117
+ }
118
GitClient gitClient = new GitClientImpl(workspacePath);
119
BazelClient bazelClient = new BazelClientImpl(
120
workspacePath,
0 commit comments