Open shannona opened 2 years ago
/cc @Fonta1n3 : is something you can take care of? After all, Gordian Server is largely used with your Fully Noded customers.
/cc @Fonta1n3 : is something you can take care of? After all, Gordian Server is largely used with your Fully Noded customers.
It's an easy fix, but will break again if they change the url. Happy to do it.
That would be great. Thanks!
It looks like the main problem is that MacOS binary URL changed from the expected:
To one of:
(There are also DMGs, but I presume the tar.gz is still preferred.)
Download now needs to occur from:
The
uname -m
command from the command line can provide the architecture. Theuname()
command in Swift can do the same, per this [see the currently 4th answer], but it'll tell you arm64 if it's running in Rosetta, which Gordian Server will be, so we presumably want to get the command-line answer to get them Bitcoin proper running efficiently on the appropriate architecture. (Hopefully that won't also be running in Rosetta since it's a script, but we won't know until we test.)So, my suggestion is:
GordianServer-macOS/Helpers/UrlRequest.swift
toGordianServer-MacOS/Scripts/Standup.command
to take advantage of theuname -m
command line option.apple-darwin
instead ofosx
.