Skip to content

Commit

Permalink
install: Document file: prefix in cli help
Browse files Browse the repository at this point in the history
  • Loading branch information
brunnre8 committed Jul 23, 2022
1 parent c8cd405 commit 31739b8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/command-line/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ type CustomMetadata = FullMetadata & {

const program = new Command("install");
program
.argument("<package>", "package to install")
.argument(
"<package>",
"package to install. Use `file:$path_to_package_dir` to install a local package"
)
.description("Install a theme or a package")
.on("--help", Utils.extraHelp)
.action(async function (packageName: string) {
Expand Down

0 comments on commit 31739b8

Please sign in to comment.