Skip to content

Commit

Permalink
Fix okbuck manifest merger cli breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarr21 committed Apr 2, 2024
1 parent fd931f6 commit 6338b77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file not shown.
2 changes: 1 addition & 1 deletion manifest-merger-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ evaluationDependsOn(pluginProjectPath)
apply plugin: "application"

group = "com.uber.okbuck.transform"
version = "1.0.0"
version = "1.0.1"

tasks.withType(JavaCompile) {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private static int process(String[] args) throws FileNotFoundException {
"Invalid property name "
+ value.substring(0, value.indexOf('='))
+ ", allowed properties are : "
+ Joiner.on(',').join(ManifestSystemProperty.values()));
+ Joiner.on(',').join(ManifestSystemProperty.getValues()));
return 1;
}
}
Expand Down Expand Up @@ -184,7 +184,7 @@ private static void usage() {
System.out.println("\t--libs [path separated list of lib's manifests]");
System.out.println("\t--overlays [path separated list of overlay's manifests]");
System.out.println(
"\t--property [" + Joiner.on(" | ").join(ManifestSystemProperty.values()) + "=value]");
"\t--property [" + Joiner.on(" | ").join(ManifestSystemProperty.getValues()) + "=value]");
System.out.println("\t--placeholder [name=value]");
System.out.println("\t--out [path of the output file]");
}
Expand Down

0 comments on commit 6338b77

Please sign in to comment.