Skip to content

Commit

Permalink
bootstrap: use curl instead of wget
Browse files Browse the repository at this point in the history
curl is not available by default on macOS
  • Loading branch information
robUx4 committed Nov 27, 2022
1 parent eb1f1aa commit 99eceaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ done

if [ ! -f ../ebml-specification/EBMLSchema.xsd ]; then
echo out of tree DETECTED, getting a temporary EBMLSchema.xsd
wget --no-clobber --unlink https://raw.githubusercontent.com/cellar-wg/ebml-specification/master/EBMLSchema.xsd
curl -f -L -o EBMLSchema.xsd https://raw.githubusercontent.com/cellar-wg/ebml-specification/master/EBMLSchema.xsd
if [ ! -f EBMLSchema.xsd ]; then
echo Missing EBML Schema
exit 1
Expand Down

0 comments on commit 99eceaa

Please sign in to comment.