From 111e08bb7bd654408a9bada8d935801268913a44 Mon Sep 17 00:00:00 2001 From: "Shahar Or (mightyiam)" Date: Thu, 19 Oct 2017 22:53:08 +0300 Subject: [PATCH] fix: commit with --no-verify (fixes #75) --- lib/update-lockfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/update-lockfile.js b/lib/update-lockfile.js index 9be9cb90..3e93c8d0 100644 --- a/lib/update-lockfile.js +++ b/lib/update-lockfile.js @@ -60,5 +60,5 @@ module.exports = function updateLockfile (dependency, options) { exec('git config user.email "support@greenkeeper.io"') exec('git config user.name "greenkeeper[bot]"') const updateMessage = 'chore(package): update lockfile\n\nhttps://npm.im/greenkeeper-lockfile' - exec(`git commit -m "${updateMessage}"`) + exec(`git commit --no-verify -m "${updateMessage}"`) }