mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
lib/oe/gpg_sign.py: Fix gpg verification
A stray space made it into the command for verifying gpg signatures. This caused verification to fail, at least on my host. Removing the space makes it work as expected. (From OE-Core rev: af1d948822cbe6ac7ede9cb4e881db8dc780e308) Signed-off-by: Daniel McGregor <daniel.mcgregor@vecima.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
dd11f1c535
commit
0dad484097
@@ -111,7 +111,7 @@ class LocalSigner(object):
|
||||
|
||||
def verify(self, sig_file):
|
||||
"""Verify signature"""
|
||||
cmd = self.gpg_cmd + [" --verify", "--no-permission-warning"]
|
||||
cmd = self.gpg_cmd + ["--verify", "--no-permission-warning"]
|
||||
if self.gpg_path:
|
||||
cmd += ["--homedir", self.gpg_path]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user