Skip to content

Commit

Permalink
ci: fix pack.mjs (#1952)
Browse files Browse the repository at this point in the history
  • Loading branch information
KermanX authored Nov 21, 2024
1 parent 2451e20 commit 74b603f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pack.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function pack() {
console.log('[pack] pack', path)
cd(resolve(WORKSPACE_ROOT, path))
const { stdout } = await $`pnpm pack`
await fs.move(stdout.trim(), `${PKG_ROOT}/${name}.tgz`)
await fs.move(stdout.split('\n').filter(Boolean).at(-1).trim(), `${PKG_ROOT}/${name}.tgz`)
}
}

Expand Down

0 comments on commit 74b603f

Please sign in to comment.