Browse Source

fix curl call in fetchruntime script

master
Julian Noble 4 days ago
parent
commit
f612f08469
  1. 2
      bin/fetchruntime.cmd
  2. 2
      src/scriptapps/fetchruntime.bash

2
bin/fetchruntime.cmd

@ -733,7 +733,7 @@ if [[ "$runtime_available" -eq 1 ]]; then
#test win32
echo "Attempting to download $url"
#wget $url -O $output
curl -SL "$output" "$url"
curl -SL --output "$output" "$url"
if [[ $? -eq 0 ]]; then
echo "File downloaded to $output"
else

2
src/scriptapps/fetchruntime.bash

@ -58,7 +58,7 @@ if [[ "$runtime_available" -eq 1 ]]; then
#test win32
echo "Attempting to download $url"
#wget $url -O $output
curl -SL "$output" "$url"
curl -SL --output "$output" "$url"
if [[ $? -eq 0 ]]; then
echo "File downloaded to $output"
else

Loading…
Cancel
Save