From 99eceaa89f47ce3c3d81c4fae706cdc471c28b07 Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Sun, 27 Nov 2022 09:55:33 +0100 Subject: [PATCH] bootstrap: use curl instead of wget curl is not available by default on macOS --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index c22ec31a..c41fe46f 100755 --- a/bootstrap +++ b/bootstrap @@ -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