mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Provide --secret-keyring parameter (for newer gpg).
PiperOrigin-RevId: 328403914
This commit is contained in:
committed by
gVisor bot
parent
3cba0a41d9
commit
e650890299
+2
-2
@@ -64,8 +64,8 @@ trap cleanup EXIT
|
||||
# is not found. This isn't actually a failure for us, because we don't require
|
||||
# the public (this may be stored separately). The second import will succeed
|
||||
# because, in reality, the first import succeeded and it's a no-op.
|
||||
gpg --no-default-keyring --keyring "${keyring}" --import "${private_key}" || \
|
||||
gpg --no-default-keyring --keyring "${keyring}" --import "${private_key}"
|
||||
gpg --no-default-keyring --keyring "${keyring}" --secret-keyring "${keyring}" --import "${private_key}" || \
|
||||
gpg --no-default-keyring --keyring "${keyring}" --secret-keyring "${keyring}" --import "${private_key}"
|
||||
|
||||
# Copy the packages into the root.
|
||||
for pkg in "$@"; do
|
||||
|
||||
Reference in New Issue
Block a user