From 1edae67326ecbb99d8b4be7e17a8ce4e14f439df Mon Sep 17 00:00:00 2001 From: Pierre Vanduynslager Date: Fri, 1 Nov 2019 16:30:33 -0400 Subject: [PATCH] fix: display erroring git commands properly --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 4116759c..1546194b 100644 --- a/index.js +++ b/index.js @@ -84,7 +84,7 @@ async function run(context, plugins) { throw error; } } catch (error) { - logger.error(`The command "${error.cmd}" failed with the error message ${error.stderr}.`); + logger.error(`The command "${error.command}" failed with the error message ${error.stderr}.`); throw getError('EGITNOPERMISSION', context); }