Skip to content

Commit 53483eb

Browse files
authored
Merge pull request #7 from sweatco/fix/taget-version
fix: target version
2 parents 6c5239f + 005cdb4 commit 53483eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ yargs(hideBin(process.argv))
2929
(yargs) => bundleArgs(appcenterArgs(yargs)).option('app', { type: 'string', demandOption: true, alias: ['a'] }),
3030
async (args) => {
3131
const bundlerConfig = buildBundleConfig({ ...args })
32-
const version = args.version ?? (await getAppVersion(bundlerConfig))
32+
const version = args.targetBinaryVersion ?? (await getAppVersion(bundlerConfig))
3333
const result = await bundle({ ...bundlerConfig, base: args.base })
3434

3535
const keys =

0 commit comments

Comments
 (0)