From 0aeb3241e42910b774432dcdb2b7cf6512e2049c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20H=C3=B6ltje?= Date: Thu, 23 May 2024 13:33:52 -0400 Subject: [PATCH] fix paths to trunk --- script/lint | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/script/lint b/script/lint index 239dfb3..9c4c3c7 100755 --- a/script/lint +++ b/script/lint @@ -2,11 +2,14 @@ set -euo pipefail +cd "$(dirname "${BASH_SOURCE[0]}")/.." + # bash -n in the minimal check for bash scripts. for file in lib/*.bash; do bash -n "${file}" done -trunk check --all +script/trunk fmt --all +script/trunk check --all # EOF