Browse Source

Fix CLI usage documentation

master
Gwendal 7 years ago
parent
commit
b71a0c6e4a
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/main/kotlin/bandcampcollectiondownloader/BandcampCollectionDownloader.kt

+ 2
- 1
src/main/kotlin/bandcampcollectiondownloader/BandcampCollectionDownloader.kt View File

@ -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: <pathToDownloadFolder>/<artist>/<year> - <album>."))
"The following structure is considered: <pathToDownloadFolder>/<artist>/<year> - <album>.",
"(default: current folder)"))
var pathToDownloadFolder: Path = Paths.get("."),
@CommandLine.Option(names = arrayOf("-h", "--help"), usageHelp = true, description = arrayOf("Display this help message."))


Loading…
Cancel
Save