We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fuelup
Executing the following on my MBA M1
curl --proto '=https' --tlsv1.2 -sSf https://fuellabs.github.io/fuelup/fuelup-init.sh | sh -s install
was resulting in the following:
cut: illegal option -- - usage: cut -b list [-n] [file ...] cut -c list [file ...] cut -f list [-s] [-d delim] [file ...] info: downloading installer curl: (22) The requested URL returned error: 404 fuelup: command failed: downloader https://github.com/FuelLabs/fuelup/releases/download/v/fuelup--aarch64-apple-darwin.tar.gz /var/folders/dr/s22m32g96ksgthk_4kby3mrh0000gn/T/tmp.FAirxTJB/fuelup.tar.gz aarch64-apple-darwin
by @binggh suggestion : changing cut -c 1 --complement to cut -c 2- in fuelup-init.sh seems like doing the trick.
cut -c 1 --complement
cut -c 2-
fuelup-init.sh
The text was updated successfully, but these errors were encountered:
Interesting, I guess M1s don't have --complement for cut!
--complement
cut
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Executing the following on my MBA M1
curl --proto '=https' --tlsv1.2 -sSf https://fuellabs.github.io/fuelup/fuelup-init.sh | sh -s install
was resulting in the following:
by @binggh suggestion : changing
cut -c 1 --complement
tocut -c 2-
infuelup-init.sh
seems like doing the trick.The text was updated successfully, but these errors were encountered: