Skip to content

Commit

Permalink
fix(cli): add option description
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Felten authored and Markus Felten committed Dec 16, 2018
1 parent ef4a02a commit 33d7624
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/npm-pkgbuild-cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ const { promises } = require("fs");
program
.description("create arch linux package from npm")
.version(version)
.option("-i <dir>")
.option("-w <dir>")
.option("-i <dir>", "install directory", undefined, "/")
.option("-w <dir>", "workspace directory", undefined, "build")
.action(async (args, options, logger) => {
if (options.w !== undefined) {
const wd = options.w;
Expand Down

0 comments on commit 33d7624

Please sign in to comment.