From 6382fb5dc6acaceb534399a293f9b6ce82c8ee5c Mon Sep 17 00:00:00 2001 From: Splines <37160523+Splines@users.noreply.github.com> Date: Mon, 9 Dec 2024 12:48:24 +0100 Subject: [PATCH] Fix failing `just docker rebuild` script (#724) --- .config/commands/docker.justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/commands/docker.justfile b/.config/commands/docker.justfile index 9eb027816..bec8465f9 100644 --- a/.config/commands/docker.justfile +++ b/.config/commands/docker.justfile @@ -61,7 +61,7 @@ up-reseed *args: docker compose exec mampf bundle exec rails c # Rebuilds the most essential containers in the dev or test environment -rebuild env="dev" +rebuild env="dev": #!/usr/bin/env bash environment={{ if env == "test" {"test"} else {"development"} }} echo "Rebuilding in env: ${environment}"