diff options
author | Zach van Rijn <me@zv.io> | 2024-08-03 20:26:42 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2024-08-03 20:26:42 -0500 |
commit | d0900a87fe3445d1a15f9557afaff45105c1926d (patch) | |
tree | 0536d25caef6e6d414ceb31cf904f2f1c51a5363 /setup-abuild | |
parent | 44b33f5f34c9abe31f38740e5ca55f33a3b5c750 (diff) | |
download | bootstrap-d0900a87fe3445d1a15f9557afaff45105c1926d.tar.gz bootstrap-d0900a87fe3445d1a15f9557afaff45105c1926d.tar.bz2 bootstrap-d0900a87fe3445d1a15f9557afaff45105c1926d.tar.xz bootstrap-d0900a87fe3445d1a15f9557afaff45105c1926d.zip |
setup-abuild: work around upstream 500 error.
Diffstat (limited to 'setup-abuild')
-rwxr-xr-x | setup-abuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/setup-abuild b/setup-abuild index 1e8af8d..2b61aaf 100755 --- a/setup-abuild +++ b/setup-abuild @@ -213,12 +213,18 @@ rm -fr ${nsam}-${vsam}; ## # muon (meson replacement) # +# Temporarily using tarball archive download: +# +# fatal: unable to access 'https://git.sr.ht/~lattis/muon/': +# The requested URL returned error: 500 +# nmun=muon; vmun=834460da03dd4a0c5b4570ca905780ce191c2443; test ! -f ._${nmun}-${vmun} && ( test ! -d ${nmun}-${vmun} \ - && git clone https://git.sr.ht/~lattis/${nmun} ${nmun}-${vmun} \ + && curl -sL https://git.sr.ht/~lattis/${nmun}/archive/${vmun}.tar.gz \ + | tar -xzf - \ ; cd ${nmun}-${vmun}; sed -i bootstrap.sh \ |