Problem Statement
If you attempt to use the command line to fetch and execute the script via bash, you might encounter an issue where the resolved= variable turns out empty. This indicates that the resolve_stable_soaked function failed to find any stable release that has been out for at least seven days—possibly because the latest version was released less than a week ago, or simply because the API request didn't return valid data this time.
Proposed Solution
In that case, you can try this command: curl -fsSL https://decepticon.red/install | CHANNEL=latest bash
Alternatives Considered
OR
export CHANNEL=latest
curl -fsSL https://decepticon.red/install | bash
Area
CLI (terminal UI)
Additional Context
No response
Problem Statement
If you attempt to use the command line to fetch and execute the script via
bash, you might encounter an issue where theresolved=variable turns out empty. This indicates that theresolve_stable_soakedfunction failed to find any stable release that has been out for at least seven days—possibly because the latest version was released less than a week ago, or simply because the API request didn't return valid data this time.Proposed Solution
In that case, you can try this command:
curl -fsSL https://decepticon.red/install | CHANNEL=latest bashAlternatives Considered
OR
export CHANNEL=latest
curl -fsSL https://decepticon.red/install | bash
Area
CLI (terminal UI)
Additional Context
No response