From e31f4128719c7e070cc2389b391e0d372f8dae1e Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Sun, 4 Aug 2024 20:03:03 -0400 Subject: [PATCH] Correct curl -O vs -o --- gentoo-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gentoo-install.sh b/gentoo-install.sh index a872179..44a3333 100755 --- a/gentoo-install.sh +++ b/gentoo-install.sh @@ -227,7 +227,7 @@ function stage_step() { #FIXME check $INSTALL_STAGE for http or local file if [[ "$INSTALL_STAGE" == http* ]]; then s4file="${INSTALL_STAGE##*/}" - ${cmd} curl -O "/mnt/gentoo/${s4file}" "$INSTALL_STAGE" || errormsg 1 "Failed to download stage4 archive" + ${cmd} curl -o "/mnt/gentoo/${s4file}" "$INSTALL_STAGE" || errormsg 1 "Failed to download stage4 archive" s4file="/mnt/gentoo/${INSTALL_STAGE##*/}" else s4file="${INSTALL_STAGE}"