about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-06-28 16:52:09 +0200
committerAlan Pearce2024-06-28 16:52:09 +0200
commit5dcf04d83605f5cfe1bf83c0a4c296bae47c3365 (patch)
tree67cb4c417ee8e83a4643f1cf105f79c78cf9b852
parent476b2f44e2938b40344f8dd27c1d37fdfe6604e9 (diff)
downloadwebsite-5dcf04d83605f5cfe1bf83c0a4c296bae47c3365.tar.lz
website-5dcf04d83605f5cfe1bf83c0a4c296bae47c3365.tar.zst
website-5dcf04d83605f5cfe1bf83c0a4c296bae47c3365.zip
use snake_case in justfile
-rwxr-xr-xjustfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/justfile b/justfile
index e632e5a..f799c1b 100755
--- a/justfile
+++ b/justfile
@@ -1,7 +1,7 @@
 #!/usr/bin/env cached-nix-shell
 #!nix-shell -i "just --justfile"
 
-docker-registry := "registry.fly.io/alanpearce-eu"
+docker_registry := "registry.fly.io/alanpearce-eu"
 
 default:
 	@just --list --justfile {{ justfile() }} --unsorted
@@ -31,4 +31,4 @@ ci: build check-links
 cd *DEPLOY_FLAGS:
 	fly auth docker
 	templ generate
-	fly deploy --image $(KO_DOCKER_REPO={{ docker-registry }} ko build --bare ./cmd/server) {{ DEPLOY_FLAGS }}
+	fly deploy --image $(KO_DOCKER_REPO={{ docker_registry }} ko build --bare ./cmd/server) {{ DEPLOY_FLAGS }}