1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix command line argument not being passed to lerna (#7210)

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2023-02-22 14:13:13 +02:00 committed by GitHub
parent 52660ef75c
commit b5e2deffc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ try {
}); });
} }
await exec(`npm run bump-version --yes ${newVersion}`); await exec(`npm run bump-version ${newVersion} -- --yes`);
} catch (error) { } catch (error) {
console.error(error); console.error(error);
process.exit(1); process.exit(1);