Rewrite onboarding prose to a neutral voice

This commit is contained in:
FanaticPythoner (Nathan Trudeau)
2026-04-26 12:26:19 -04:00
parent a591cd21f2
commit e27c8a2bd6
16 changed files with 69 additions and 70 deletions

View File

@@ -63,7 +63,7 @@ repo_root() {
}
# Load $repo/.env into the environment.
# Existing environment values take precedence (matches just's dotenv-load).
# Existing environment values take precedence (matches dotenv-load in just).
load_env() {
local root env line key rest
root="$(repo_root)"
@@ -111,6 +111,6 @@ require_cmd() {
require_env() {
local name="$1"
if [ -z "${!name:-}" ]; then
die "environment variable '$name' is unset. Run 'just init-env' and fill .env."
die "environment variable '$name' is unset. Run 'just init-env'. Fill .env."
fi
}