Skip to content

Commit 4d89c0d

Browse files
committed
don't skip updating package.json for non-latest
1 parent 1c87edf commit 4d89c0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/utils/next-version-helpers.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export async function setNextVersionInFixture(
126126
return false
127127
}
128128

129-
if (process.env.NEXT_VERSION ?? 'latest' === 'latest') {
129+
if ((process.env.NEXT_VERSION ?? 'latest') === 'latest') {
130130
// latest is default so we don't want to make any changes
131131
return true
132132
}

0 commit comments

Comments
 (0)