Skip to content

Commit debee80

Browse files
committed
fix: fix typo in error message
Closes #313
1 parent 36ff30f commit debee80

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ async function main() {
102102
)?.version
103103
if (!local || !remote) {
104104
endGroup()
105-
return setFailed(`Couldn't find ${local ? 'local' : 'remote'} version.`)
105+
return setFailed(`Couldn't find ${local ? 'remote' : 'local'} version.`)
106106
}
107107

108108
if (!semverRE.test(local)) {
@@ -380,7 +380,6 @@ async function checkDiff(sha: string, version: string) {
380380
return false
381381
}
382382

383-
output('changed', true)
384383
output('version', version)
385384
if (versions.deleted)
386385
output('type', semverDiff(versions.deleted, versions.added as string))

0 commit comments

Comments
 (0)