This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=0b9db34e3efabbbbbd11f253ac84d66d84f437d8 commit 0b9db34e3efabbbbbd11f253ac84d66d84f437d8 Author: Guillem Jover <[email protected]> AuthorDate: Sun Jun 28 17:18:46 2020 +0200 Dpkg::OpenPGP: Do not use interpolated string for a literal Fixes: commit 7b2d550c64191597827350fa447bf9caf15b749a --- scripts/Dpkg/OpenPGP.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dpkg/OpenPGP.pm b/scripts/Dpkg/OpenPGP.pm index 7ee330af3..deba0ec51 100644 --- a/scripts/Dpkg/OpenPGP.pm +++ b/scripts/Dpkg/OpenPGP.pm @@ -100,7 +100,7 @@ sub import_key { return; } - my $gpghome = File::Temp->newdir("dpkg-import-key.XXXXXXXX", TMPDIR => 1); + my $gpghome = File::Temp->newdir('dpkg-import-key.XXXXXXXX', TMPDIR => 1); push @exec, '--homedir', $gpghome; push @exec, '--no-options', '--no-default-keyring', '-q', '--import'; -- Dpkg.Org's dpkg

