From ac7fca9281c64412b5d4f0c7e718e87945dd28b0 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Sun, 26 Jan 2025 16:21:36 -0500 Subject: Add build target --- justfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index d4acf05..6053b77 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,8 @@ @default: just --list -run: - go build -o bin/bluesky-nats-proxy - bin/bluesky-nats-proxy \ No newline at end of file +run: build + bin/bluesky-nats-proxy + +build: + go build -o bin/bluesky-nats-proxy \ No newline at end of file -- cgit