From bd0fcdf0dbe91227a4aa58f75365644bd311c726 Mon Sep 17 00:00:00 2001 From: Corey Farrell Date: Sun, 5 May 2019 01:36:11 -0400 Subject: [PATCH] test: disable gpg signing in temporary test repositories. (#311) --- test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test.js b/test.js index 0113bd1e8..6a2dbacff 100644 --- a/test.js +++ b/test.js @@ -94,6 +94,7 @@ function initInTempFolder () { shell.mkdir('tmp') shell.cd('tmp') shell.exec('git init') + shell.exec('git config commit.gpgSign false') commit('root-commit') writePackageJson('1.0.0') }