Skip to content

Commit 62eb49e

Browse files
authored
Fix curl command option for downloading firmware
1 parent 4eae3bf commit 62eb49e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

baremetal.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function baremetal_setup {
129129
echo -n "Downloading UEFI firmware... "
130130
cd sys
131131
if [ -x "$(command -v curl)" ]; then
132-
curl -s -o OVMF.fd https://cdn.download.clearlinux.org/image/OVMF.fd
132+
curl -s -O https://cdn.download.clearlinux.org/image/OVMF.fd
133133
else
134134
wget -q https://cdn.download.clearlinux.org/image/OVMF.fd
135135
fi

0 commit comments

Comments
 (0)