From 60f44b67b78bb26a863f9ce43a98506f04d78df2 Mon Sep 17 00:00:00 2001 From: pablomendezroyo <41727368+pablomendezroyo@users.noreply.github.com> Date: Thu, 16 Nov 2023 15:55:31 +0100 Subject: [PATCH] Ignore the core compose file Ignore the Ignore the core compose file in the profile --- .dappnode_profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.dappnode_profile b/.dappnode_profile index b89efb7..69416e9 100755 --- a/.dappnode_profile +++ b/.dappnode_profile @@ -12,7 +12,7 @@ export DAPPNODE_DIR="/usr/src/dappnode" export DAPPNODE_CORE_DIR="${DAPPNODE_DIR}/DNCORE" #!ISOBUILD Do not modify, variables above imported for ISO build -DNCORE_YMLS=$(find $DAPPNODE_CORE_DIR -name "docker-compose-*.yml" -printf "-f %p ") +DNCORE_YMLS=$(find $DAPPNODE_CORE_DIR -name "docker-compose-*.yml" ! -name "docker-compose-core.yml" -printf "-f %p ") # shellcheck disable=SC2207 # shellcheck disable=SC2034 DNCORE_YMLS_ARRAY=($(find /usr/src/dappnode/DNCORE -name "docker-compose-*.yml" | sort))