From 8a6f25f945785322cfcbb78772a3819610861a59 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 11 Feb 2026 11:33:00 -0300 Subject: [PATCH] chore(taskfile): run binary with extension on windows --- Taskfile.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index e20177a86873cba8b685675032da6b1f65282e1b..476626fde4f0ed33d26fa20c2dc8b00ecd557af6 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -56,7 +56,7 @@ tasks: desc: Run build cmds: - task: build - - "./crush {{.CLI_ARGS}} {{if .RACE}}2>race.log{{end}}" + - "./crush{{exeExt}} {{.CLI_ARGS}} {{if .RACE}}2>race.log{{end}}" run:catwalk: desc: Run build with local Catwalk @@ -64,7 +64,7 @@ tasks: CATWALK_URL: http://localhost:8080 cmds: - task: build - - ./crush {{.CLI_ARGS}} + - ./crush{{exeExt}} {{.CLI_ARGS}} run:onboarding: desc: Run build with custom config to test onboarding @@ -74,7 +74,7 @@ tasks: cmds: - task: build - rm -rf tmp/onboarding - - ./crush {{.CLI_ARGS}} + - ./crush{exeExt} {{.CLI_ARGS}} test: desc: Run tests