Fix broken build command in .air.toml

This commit is contained in:
Joakim Hellsén 2024-02-14 01:51:13 +01:00
commit 2e5140f669

View file

@ -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",