mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 21:59:42 +01:00
oe/gpg_sign: fix incorrect variable name
Prevents crash in signing if GPG_PATH is defined. (From OE-Core rev: 0ecd748258abfe5ed9e9e2505aeb42b232389968) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
902a68fbee
commit
8cb1e83a57
@@ -58,7 +58,7 @@ class LocalSigner(object):
|
||||
"--passphrase-file '%s' -u '%s' " % \
|
||||
(self.gpg_bin, self.passphrase_file, self.keyid)
|
||||
if self.gpg_path:
|
||||
gpg_cmd += "--homedir %s " % self.gpg_path
|
||||
cmd += "--homedir %s " % self.gpg_path
|
||||
cmd += input_file
|
||||
status, output = oe.utils.getstatusoutput(cmd)
|
||||
if status:
|
||||
|
||||
Reference in New Issue
Block a user