diff --git a/bin/asar.js b/bin/asar.js index 8efcc1a..3edd6ff 100755 --- a/bin/asar.js +++ b/bin/asar.js @@ -73,8 +73,8 @@ program.command('extract ') }) program.command('*') - .action(function (cmd) { - console.log('asar: \'%s\' is not an asar command. See \'asar --help\'.', cmd) + .action(function (_cmd, args) { + console.log('asar: \'%s\' is not an asar command. See \'asar --help\'.', args[0]) }) program.parse(process.argv)