Skip to content

Commit

Permalink
replace wget with curl
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosborn committed Jun 17, 2024
1 parent 34c4aec commit e466c73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap-travis
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
qmpv="qmp-2.5.4"
qmp="$qmpv.tar.gz"
if [ ! -f $qmp ]; then
wget "http://usqcd-software.github.io/downloads/qmp/$qmp"
curl -LO "http://usqcd-software.github.io/downloads/qmp/$qmp"
fi
tar zxvf $qmp
mkdir qmp
Expand All @@ -19,7 +19,7 @@ cd ..
qiov="qio-3.0.0"
qio="$qiov.tar.gz"
if [ ! -f $qio ]; then
wget "http://usqcd-software.github.io/downloads/qio/$qio"
curl -LO "http://usqcd-software.github.io/downloads/qio/$qio"
fi
tar zxvf $qio
mkdir qio
Expand Down

0 comments on commit e466c73

Please sign in to comment.