Tweak speedrun quickstart guide
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-09-03 23:47:57 +00:00
parent 2e46c22fe5
commit ce3555e3d0

View File

@ -41,11 +41,12 @@ Please use the [conventional commit format](https://www.conventionalcommits.org/
### Super quick-start (Ubuntu Server) ### Super quick-start (Ubuntu Server)
```bash ```bash
sudo apt update && sudo DEBIAN_FRONTEND=noninteractive apt install -y golang make git cd
sudo apt update && DEBIAN_FRONTEND=noninteractive sudo apt install -y golang make git
git clone https://git.coopcloud.tech/toolshed/abra.git && cd abra git clone https://git.coopcloud.tech/toolshed/abra.git && cd abra
make build make build
mkdir -p ~/.local/bin/ mkdir -p ~/.local/bin/
ln -s $PWD/abra ~/.local/bin/ ln -s $PWD/abra ~/.local/bin/abra-dev
if [[ "$PATH" != *".loocal/bin"* ]]; then export PATH="$PATH:~/.local/bin/"; echo 'export PATH=$PATH:~/.local/bin' >> ~/.bashrc; fi if [[ "$PATH" != *".loocal/bin"* ]]; then export PATH="$PATH:~/.local/bin/"; echo 'export PATH=$PATH:~/.local/bin' >> ~/.bashrc; fi
abra-dev --help abra-dev --help
``` ```