We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cdf88e commit 2c48e4cCopy full SHA for 2c48e4c
src/index.ts
@@ -19,13 +19,9 @@ ${chalk.underline('Commands:')}
19
20
${chalk.underline('Options:')}
21
-h, --help Print help (see more with '--help')
22
- -V, --version Print version
+ -v, --version Print version
23
`)
24
}
25
-if (argv._[0] !== 'sg' || argv.help || argv.h) {
26
- printHelp()
27
- process.exit()
28
-}
29
30
const dirname = path.dirname(fileURLToPath(import.meta.url))
31
if (argv.v || argv.version) {
@@ -34,6 +30,11 @@ if (argv.v || argv.version) {
34
process.exit()
35
36
32
33
+if (argv._[0] !== 'sg' || argv.help || argv.h) {
+ printHelp()
+ process.exit()
+}
37
+
38
$.verbose = false
39
40
let macro = await select({
0 commit comments