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

Fix NC-1707 pantheon CLI default values infinite loop #266

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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