Correct curl -O vs -o
This commit is contained in:
parent
a163491b04
commit
e31f412871
1 changed files with 1 additions and 1 deletions
|
@ -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}"
|
||||
|
|
Loading…
Reference in a new issue