Skip to content

Commit c71f8ed

Browse files
committed
Use exit code 0 instead of 78
1 parent c977009 commit c71f8ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ function getLabelChanges(newLabel, existingLabels) {
195195

196196
if (require.main === module) {
197197
main().then(
198-
success => (process.exitCode = success ? 0 : 78),
198+
() => (process.exitCode = 0),
199199
e => {
200200
process.exitCode = 1;
201201
console.error(e);

0 commit comments

Comments
 (0)