AkurAI Build
Menu

AkurAI-Build

public

Latest change e7a1a89ddab5d1f27fad067498f11157de4d156c - feat(deploy): shared cross-environment health-sweep by Ólafur Búi Ólafsson

#!/usr/bin/env sh
# Install AkurAI-Build maintained host CLIs and shared config into the paths the
# CI worker bind-mounts (~/.local/bin RW, ~/.config/akurai-build RO). Run on the
# Titan host after changing scripts/health-sweep.sh or deploy/environments.tsv.
# Reproducible and idempotent; this is the codified install step (no ad-hoc copies).
set -eu
root="$(cd "$(dirname "$0")/.." && pwd)"
bin="$HOME/.local/bin"
cfg="$HOME/.config/akurai-build"
mkdir -p "$bin" "$cfg"
install -m 755 "$root/scripts/health-sweep.sh" "$bin/akurai-health-sweep"
install -m 644 "$root/deploy/environments.tsv" "$cfg/environments.tsv"
echo "installed: $bin/akurai-health-sweep"
echo "installed: $cfg/environments.tsv"