We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6cf01d0 + 4c58a88 commit 94f7434Copy full SHA for 94f7434
src/main/java/com/bazel_diff/VersionProvider.java
@@ -5,7 +5,7 @@
5
class VersionProvider implements IVersionProvider {
6
public String[] getVersion() throws Exception {
7
return new String[] {
8
- "1.1.1"
+ "1.2.0"
9
};
10
}
11
src/main/java/com/bazel_diff/main.java
@@ -208,6 +208,7 @@ public Integer call() throws IOException {
208
209
210
public static void main(String[] args) {
211
- new CommandLine(new BazelDiff()).execute(args);
+ int exitCode = new CommandLine(new BazelDiff()).execute(args);
212
+ System.exit(exitCode);
213
214
0 commit comments