Skip to content

Commit 97291c5

Browse files
fix(cli): remove angle brackets around path parameter
1 parent e70ca31 commit 97291c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cli/Main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ int main(int argc, const char* const* argv) {
451451
"when it is still unclear. Almost all modes are compatible with each other, and will run in the\n"
452452
"most logical sequence possible.");
453453

454-
cli.add_argument("<path>")
454+
cli.add_argument("path")
455455
.help("(Pack) The directory to pack the contents of into a new pack file.\n"
456456
"(Extract) The path to the pack file to extract the contents of.\n"
457457
"(Generate) The name of the file(s) to generate.\n"
@@ -582,7 +582,7 @@ int main(int argc, const char* const* argv) {
582582
try {
583583
cli.parse_args(argc, argv);
584584

585-
std::string inputPath{cli.get("<path>")};
585+
std::string inputPath{cli.get("path")};
586586
if (inputPath.ends_with('/') || inputPath.ends_with('\\')) {
587587
inputPath.pop_back();
588588
}

0 commit comments

Comments
 (0)