| name | install |
| description | Build gwtui from source and install the binary to ~/.local/bin |
| triggers | ["install","build and install","update binary"] |
Install gwtui
Builds the gwtui binary from source and installs it.
Steps
- Ensure on latest main:
git fetch origin main
Warn the user if the working tree has uncommitted changes or if HEAD is not on main.
- Run tests:
go test ./...
If tests fail, stop and report the failure. Do not install a broken build.
- Build and install:
go build -o ~/.local/bin/gwtui ./cmd/
- Verify the installed binary runs:
gwtui -h
Report success with the installed path.