Skip to main content

Documentation Index

Fetch the complete documentation index at: https://errand.nuvrel.dev/llms.txt

Use this file to discover all available pages before exploring further.

1

Run the install script

curl -fsSL https://nuvrel.dev/install/errand.sh | bash
The script detects your OS and architecture, downloads the correct binary, verifies its checksum, and installs it to ~/.errand/bin.
2

Reload your shell

The installer adds ~/.errand/bin to your shell configuration and prints the exact command to apply the change. Run that command, or open a new terminal.
3

Verify

errand --version

Pinning a version

Set VERSION to install a specific release:
curl -fsSL https://nuvrel.dev/install/errand.sh | VERSION=1.0.0 bash

Custom install directory

Set ERRAND_INSTALL to change where the binary is placed:
curl -fsSL https://nuvrel.dev/install/errand.sh | ERRAND_INSTALL=~/tools bash

Upgrading

Run the install script again. It replaces the existing binary:
curl -fsSL https://nuvrel.dev/install/errand.sh | bash

Uninstalling

Remove the install directory:
rm -rf ~/.errand
Then remove the lines the installer added to your shell configuration file.

Manual verification

The install script verifies the checksum automatically. If you downloaded a binary manually, you can verify it yourself.Download the checksums file for your release from the GitHub releases page, then run:
sha256sum --ignore-missing -c errand_VERSION_checksums.txt
Replace VERSION with the version you downloaded, for example errand_1.2.0_checksums.txt.