File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments