Skip to content

Commit b6cdf3c

Browse files
Fix asterisk in help message
The message shown when calling `asar --help` wrongly showed an asterisk as a command.
1 parent e4fb057 commit b6cdf3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/asar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ program.command('extract <archive> <dest>')
7070
asar.extractAll(archive, dest)
7171
})
7272

73-
program.command('*')
73+
program.command('*', { hidden: true})
7474
.action(function (_cmd, args) {
7575
console.log('asar: \'%s\' is not an asar command. See \'asar --help\'.', args[0])
7676
})

0 commit comments

Comments
 (0)