Skip to content

Commit db2f229

Browse files
committed
Fix command
1 parent 3367298 commit db2f229

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/release/publish-commands/publish-to-npm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ const run = async ({cwd, dry, packages, tags}, otp) => {
5959
// npm doesn't let us publish without a tag at all,
6060
// so for one-off publishes we clean it up ourselves.
6161
if (!dry) {
62-
await exec(`npm dist-tag rm ${packageName}@untagged --otp=${otp}`);
62+
await exec(`npm dist-tag rm ${packageName} untagged --otp=${otp}`);
6363
}
6464
console.log(
65-
theme.command(`npm dist-tag rm ${packageName}@untagged --otp=${otp}`)
65+
theme.command(`npm dist-tag rm ${packageName} untagged --otp=${otp}`)
6666
);
6767
}
6868
}

0 commit comments

Comments
 (0)