Skip to content

Commit 81a8a9b

Browse files
committed
fix: Update pack script
1 parent 461af65 commit 81a8a9b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

scripts/pack-and-upload.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ yarn global add @zeus-ci/cli
55
yarn
66
yarn build
77

8+
# Sanity Check
9+
yarn lerna changed --include-merged-tags -p
10+
811
# Temp workaround
912
git clone https://github.com/HazAT/lerna.git
1013
cd lerna

scripts/package-and-upload-to-zeus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const exec = promisify(require('child_process').exec);
33
const join = require('path').join;
44

55
(async () => {
6-
const result = (await exec('yarn lerna changed -p --include-merged-tags')).stdout;
6+
const result = (await exec('yarn lerna changed --include-merged-tags -p')).stdout;
77
const lines = result.split('\n');
88

99
if (

0 commit comments

Comments
 (0)