Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Commit

Permalink
Fix NC-1707 pantheon CLI default values infinite loop (#266)
Browse files Browse the repository at this point in the history
Picocli latest release 3.8.0 fixes the issue.
  • Loading branch information
NicolasMassart authored Nov 19, 2018
1 parent 454fd5a commit c12e1f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencyManagement {

dependency('com.github.docker-java:docker-java:3.0.14')

dependency('info.picocli:picocli:3.6.1')
dependency('info.picocli:picocli:3.8.0')
dependency('net.consensys.cava:cava-toml:0.3.1')

dependency('org.openjdk.jmh:jmh-core:1.21')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public static class RpcApisConversionException extends Exception {
@Option(
names = {"--datadir"},
paramLabel = MANDATORY_PATH_FORMAT_HELP,
description = "the path to Pantheon data directory"
description = "the path to Pantheon data directory (default: ${DEFAULT-VALUE})"
)
private final Path dataDir = getDefaultPantheonDataDir();

Expand Down

0 comments on commit c12e1f5

Please sign in to comment.