Skip to content

Commit

Permalink
Fix nightly release job for real (#28825)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon authored and rickhanlonii committed Apr 11, 2024
1 parent 7149b49 commit 80bbdd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release/publish-commands/publish-to-npm.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const run = async ({cwd, dry, tags, ci}, packageName, otp) => {
// But for now the easiest way is just to ask if this is expected.
const {status} = spawnSync('npm', ['view', `${packageName}@${version}`]);
const packageExists = status === 0;
if (!packageExists) {
if (packageExists) {
console.log(
theme`{package ${packageName}} {version ${version}} has already been published.`
);
Expand Down

0 comments on commit 80bbdd5

Please sign in to comment.