Skip to content

Commit 3a95e62

Browse files
committedJan 25, 2025
fix
1 parent 2c91d08 commit 3a95e62

File tree

2 files changed

+3784
-2
lines changed

2 files changed

+3784
-2
lines changed
 

‎bin/asarmor.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env node
22
import { Command, InvalidArgumentError } from '@commander-js/extra-typings';
33
import { open, createBloatPatch, encrypt } from '../src';
4-
import { version } from '../package.json';
54

65
function parseNumber(value: string, isRequired: boolean) {
76
if (value == null && !isRequired) {
@@ -18,7 +17,7 @@ function parseNumber(value: string, isRequired: boolean) {
1817
}
1918

2019
const program = new Command()
21-
.version(version)
20+
.version('0.0.1')
2221
.requiredOption('-a, --archive <archive>', 'input asar file (required)')
2322
.requiredOption('-o, --output <output>', 'output asar file (required)')
2423
.option('-b, --backup', 'create backup')

0 commit comments

Comments
 (0)