From 2e5140f6690be6fb7ec428163f0b6de8e6bc4c6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Wed, 14 Feb 2024 01:51:13 +0100 Subject: [PATCH] Fix broken build command in .air.toml --- .air.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.air.toml b/.air.toml index aacdfcd..98b17b0 100644 --- a/.air.toml +++ b/.air.toml @@ -5,7 +5,7 @@ tmp_dir = "tmp" [build] args_bin = [] bin = "tmp\\main.exe" -cmd = "go build -o ./tmp/main.exe ." +cmd = "go build -o ./tmp/main.exe ./cmd/feedvault/" delay = 1000 exclude_dir = [ "assets", @@ -13,6 +13,7 @@ exclude_dir = [ "tmp", "vendor", "testdata", + "tests", ".git", ".idea", ".vscode",