aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2025-02-25 21:56:13 -0800
committerMax Resnick <max@ofmax.li>2025-02-25 21:56:13 -0800
commitcc3a366e3c7c7d9b9ab8f81a73ab6afaf810851d (patch)
tree49f7e5eb04dba70011720faf2e8683ec333f97b3
parent1e89e2b903b578ec013df837af04fc8facc939cd (diff)
downloadgrumpy-containers-cc3a366e3c7c7d9b9ab8f81a73ab6afaf810851d.tar.gz
fix: make the default target the first
-rw-r--r--justfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/justfile b/justfile
index d2edf63..4b4b42b 100644
--- a/justfile
+++ b/justfile
@@ -3,13 +3,13 @@ registry_url := "public.ecr.aws/s0f9o2k5"
containers := "src/*/"
targets := `find src -type f -name "targets" -exec dirname {} \; | sed 's/src\///'`
-# All
-all: build push
-
# Default recipe
default:
@just --choose
+# all
+all: build push
+
# Build all containers and targets
build: build-containers build-targets