From b71a0c6e4a9de99864c3e8a7453b7a95cb18ccb5 Mon Sep 17 00:00:00 2001 From: Gwendal Date: Wed, 8 Aug 2018 00:34:12 +0200 Subject: [PATCH] Fix CLI usage documentation --- .../bandcampcollectiondownloader/BandcampCollectionDownloader.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/bandcampcollectiondownloader/BandcampCollectionDownloader.kt b/src/main/kotlin/bandcampcollectiondownloader/BandcampCollectionDownloader.kt index 14116d8..9e53916 100644 --- a/src/main/kotlin/bandcampcollectiondownloader/BandcampCollectionDownloader.kt +++ b/src/main/kotlin/bandcampcollectiondownloader/BandcampCollectionDownloader.kt @@ -118,7 +118,8 @@ data class Args( @CommandLine.Option(names = arrayOf("--download-folder", "-d"), required = false, description = arrayOf("The folder in which downloaded albums must be extracted.", - "The following structure is considered: // - .")) + "The following structure is considered: // - .", + "(default: current folder)")) var pathToDownloadFolder: Path = Paths.get("."), @CommandLine.Option(names = arrayOf("-h", "--help"), usageHelp = true, description = arrayOf("Display this help message."))