From af15861c6ce557f1b941e9d1d0921af05721c521 Mon Sep 17 00:00:00 2001 From: Starttoaster Date: Sat, 11 Jan 2025 09:07:41 -0800 Subject: [PATCH] Add chia-tools config flag --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 6578d28..5ca54b5 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -318,7 +318,7 @@ fi # Check if any of the env vars start with "chia." or "chia__" and if so, process the config with chia-tools if env | grep -qE '^chia(\.|__)'; then echo "Found environment variables starting with 'chia.' or 'chia__' - Running chia-tools" - /usr/bin/chia-tools config edit "$CHIA_ROOT/config/config.yaml" + /usr/bin/chia-tools config edit --config "$CHIA_ROOT/config/config.yaml" fi exec "$@"