From 9b677e6b0d199e9f663bdce2ad0a83aa3c7b8fea Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Mon, 4 Sep 2023 15:39:48 +0200 Subject: [PATCH] fix curl syntax --- usr/bin/archboot-secureboot-keys.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/archboot-secureboot-keys.sh b/usr/bin/archboot-secureboot-keys.sh index 3a2f0b7f0..4e9892ab8 100755 --- a/usr/bin/archboot-secureboot-keys.sh +++ b/usr/bin/archboot-secureboot-keys.sh @@ -48,8 +48,8 @@ if [[ -n "${_DIR}" ]]; then ${NAME} EOF # download MS Certificates, else EFI might get broken! - ${_DLPROG} https://www.microsoft.com/pkiops/certs/MicWinProPCA2011_2011-10-19.crt -O ./ - ${_DLPROG} https://www.microsoft.com/pkiops/certs/MicCorUEFCA2011_2011-06-27.crt -O ./ + ${_DLPROG} -O https://www.microsoft.com/pkiops/certs/MicWinProPCA2011_2011-10-19.crt + ${_DLPROG} -O https://www.microsoft.com/pkiops/certs/MicCorUEFCA2011_2011-06-27.crt sbsiglist --owner 77fa9abd-0359-4d32-bd60-28f4e78f784b --type x509 --output MS_Win_db.esl MicWinProPCA2011_2011-10-19.crt sbsiglist --owner 77fa9abd-0359-4d32-bd60-28f4e78f784b --type x509 --output MS_UEFI_db.esl MicCorUEFCA2011_2011-06-27.crt cat MS_Win_db.esl MS_UEFI_db.esl > MS_db.esl