From 83879efd75d7d5d7ca283b7d15b62db5e200c605 Mon Sep 17 00:00:00 2001 From: Tim Ruffles Date: Fri, 20 Dec 2019 12:49:42 +0000 Subject: [PATCH] correct prop --- action.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.js b/action.js index 143b335..c8d8eac 100644 --- a/action.js +++ b/action.js @@ -31,7 +31,7 @@ function main() { function invalidFormat(format) { const list = Object.keys(formatters).sort().join(",") console.error(`'${format}' is not one of the accepted formats ${list}`) - process.statusCode = 1 + process.exitCode = 1 return }