From 3d2c13b588f4eefb76cef9f8a27caa0d54482c1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Mon, 3 Jun 2024 19:32:07 -0700 Subject: [PATCH] format justfile --- justfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/justfile b/justfile index bdcdfe5..16f2ef7 100644 --- a/justfile +++ b/justfile @@ -8,28 +8,28 @@ default: run # build binary build: - go build -o {{output}} {{cmd}} + go build -o {{ output }} {{ cmd }} # run from source run: - go run {{cmd}} + go run {{ cmd }} # build 'n run run-binary: build - exec {{output}} + exec {{ output }} # run with args run-args args: - go run {{cmd}} {{args}} + go run {{ cmd }} {{ args }} # install binary into $GOPATH install: - go install {{cmd}} + go install {{ cmd }} # clean up after yourself clean: - rm {{output}} + rm {{ output }} # run go tests test: - go test ./... + go test ./...