From 96ad77c05d8c49954d983f1a50307519274e2f27 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Fri, 9 Jan 2026 11:08:54 -0300 Subject: [PATCH] chore: task run build and then exec Signed-off-by: Carlos Alexandro Becker --- Taskfile.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 2f5574f7ab1f07a03f47e8534d477afd293d9248..68c805c599314cadde5c86fc37a0e3d1a6184f4e 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -44,7 +44,8 @@ tasks: run: desc: Run build cmds: - - go run . {{.CLI_ARGS}} + - go build -o crush . + - ./crush {{.CLI_ARGS}} test: desc: Run tests