Skip to content

Commit

Permalink
Indent a command
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Aug 7, 2020
1 parent db2f229 commit 2d9ec91
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/release/publish-commands/publish-to-npm.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ const run = async ({cwd, dry, packages, tags}, otp) => {
await exec(`npm dist-tag rm ${packageName} untagged --otp=${otp}`);
}
console.log(
theme.command(`npm dist-tag rm ${packageName} untagged --otp=${otp}`)
theme.command(
` npm dist-tag rm ${packageName} untagged --otp=${otp}`
)
);
}
}
Expand Down

0 comments on commit 2d9ec91

Please sign in to comment.