diff options
| author | Max Resnick <max@ofmax.li> | 2025-02-25 21:56:13 -0800 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2025-02-25 21:56:13 -0800 |
| commit | cc3a366e3c7c7d9b9ab8f81a73ab6afaf810851d (patch) | |
| tree | 49f7e5eb04dba70011720faf2e8683ec333f97b3 | |
| parent | 1e89e2b903b578ec013df837af04fc8facc939cd (diff) | |
| download | grumpy-containers-cc3a366e3c7c7d9b9ab8f81a73ab6afaf810851d.tar.gz | |
fix: make the default target the first
| -rw-r--r-- | justfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |