From 430e9be1f76509c80bc6fbe62f32d2af62d82de4 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 3 Feb 2025 18:18:10 +0000 Subject: [PATCH] reorder tasks --- Taskfile.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 53970c8..75bc669 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -12,13 +12,12 @@ vars: tasks: default: - desc: "Build the Go project" + desc: "Build the q3rcon project" deps: [build] - fmt: - desc: "Fmt the code" - cmds: - - go fmt ./... + build: + desc: "Build the q3rcon project" + deps: [vet, build-windows, build-linux] vet: desc: "Vet the code" @@ -26,9 +25,10 @@ tasks: cmds: - go vet ./... - build: - desc: "Build the q3rcon project" - deps: [vet, build-windows, build-linux] + fmt: + desc: "Fmt the code" + cmds: + - go fmt ./... build-windows: desc: "Build the q3rcon project for Windows"