mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 18:32:12 +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: 4acd52e2111cbe783201dec42df027945dad62ee) 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
bf706462a0
commit
ceae5f22c9
@@ -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