Browse Source

build: turn gpg signing off for bootstrap (#17282)

Shelley Vohr 6 years ago
parent
commit
17dab8f239
1 changed files with 1 additions and 0 deletions
  1. 1 0
      script/lib/git.py

+ 1 - 0
script/lib/git.py

@@ -52,6 +52,7 @@ def am(repo, patch_data, threeway=False, directory=None,
     root_args += ['-c', 'user.name=' + committer_name]
   if committer_email is not None:
     root_args += ['-c', 'user.email=' + committer_email]
+  root_args += ['-c', 'commit.gpgsign=false']
   command = ['git'] + root_args + ['am'] + args
   proc = subprocess.Popen(
       command,