From 7bdc204083c066a89848823bd2dc7fabef4b7f76 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Sun, 22 Mar 2026 09:41:33 +0000 Subject: fix: cd to repo root in deploy script Script uses relative paths (npm, go build, rsync) so it must run from the repo root regardless of the caller's working directory. Co-Authored-By: Claude Sonnet 4.6 --- scripts/deploy | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/deploy b/scripts/deploy index 3a98290..adb27e2 100755 --- a/scripts/deploy +++ b/scripts/deploy @@ -1,5 +1,6 @@ #!/bin/bash set -e +cd "$(dirname "$0")/.." # Configuration FQDN="doot.terst.org" -- cgit v1.2.3