Skip to content

Commit 3254eb9

Browse files
committed
fix(build): modify release script to pass the parsed option to package
1 parent fb689ea commit 3254eb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/nx-release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ if (!parsedVersion.isValid) {
7878
}
7979

8080
console.log('Executing build script:');
81-
const buildCommand = './scripts/package.sh';
81+
const buildCommand = `./scripts/package.sh ${parsedVersion.version} ${parsedVersion.version}`;
8282
console.log(`> ${buildCommand}`);
8383
childProcess.execSync(buildCommand, {
8484
stdio: [0, 1, 2]

0 commit comments

Comments
 (0)