File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ async function main() {
114
114
if ( ! ( await isInSyncWithRemote ( ) ) ) {
115
115
return
116
116
} else {
117
- console . log ( `${ pico . green ( `✓` ) } commit is up-to-date with rmeote .\n` )
117
+ console . log ( `${ pico . green ( `✓` ) } commit is up-to-date with remote .\n` )
118
118
}
119
119
120
120
let targetVersion = args . _ [ 0 ]
@@ -239,7 +239,7 @@ async function main() {
239
239
if ( ! skipTests ) {
240
240
step ( '\nRunning tests...' )
241
241
if ( ! isDryRun ) {
242
- await run ( 'pnpm' , [ 'test ' , 'run ' ] )
242
+ await run ( 'pnpm' , [ 'run ' , 'test ' ] )
243
243
} else {
244
244
console . log ( `Skipped (dry run)` )
245
245
}
@@ -307,7 +307,7 @@ async function main() {
307
307
if ( isDryRun ) {
308
308
additionalPublishFlags . push ( '--dry-run' )
309
309
}
310
- if ( skipGit ) {
310
+ if ( isDryRun || skipGit ) {
311
311
additionalPublishFlags . push ( '--no-git-checks' )
312
312
}
313
313
// bypass the pnpm --publish-branch restriction which isn't too useful to us
You can’t perform that action at this time.
0 commit comments