From 59cec7b7e0167557298a5cde0a2bb1138ae408d2 Mon Sep 17 00:00:00 2001 From: Josh Wilson Date: Mon, 15 Apr 2024 15:19:02 +0900 Subject: [PATCH] fix: justfile conditional error --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 49bd390fe8..23054ee34f 100644 --- a/Justfile +++ b/Justfile @@ -105,7 +105,7 @@ build-release-artifacts arch: mkdir artifacts cargo clean - if [[ -n "${NETWORK_VERSION_MODE+x}"]]; then + if [[ -n "${NETWORK_VERSION_MODE+x}" ]]; then echo "The NETWORK_VERSION_MODE variable is set to $NETWORK_VERSION_MODE" export CROSS_CONTAINER_OPTS="--env NETWORK_VERSION_MODE=$NETWORK_VERSION_MODE" fi