From 85d986039bd69660f4a04249a1b6c80518814380 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sun, 21 Jun 2026 01:16:37 +0200 Subject: [PATCH] refactor: migrate justfile fix scripts from bash to bun --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 286abb7..687202f 100644 --- a/justfile +++ b/justfile @@ -49,10 +49,10 @@ clean: rm -f server new-data-fix name: - bash scripts/new-data-fix.sh {{name}} + bun run ./scripts/new-data-fix.ts {{name}} run-fixes: go run ./cmd/user run-fixes fix-all: - bash scripts/fix-all.sh + bun run ./scripts/fix-all.ts