build: create bin dir when building as it's git-ignored

This commit is contained in:
2025-11-26 16:09:23 +01:00
parent 8915de6145
commit 5274739cd3

View File

@@ -4,6 +4,7 @@ BIN = bin/aoc
.PHONY: build test clean .PHONY: build test clean
build: build:
mkdir -p $(dir $(BIN))
$(GO) build -o $(BIN) ./cmd/aoc $(GO) build -o $(BIN) ./cmd/aoc
test: test: