From 4449b578bd5a7ad9eb3ec048f7e08a6e792b4c70 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 4 Nov 2024 14:08:08 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(config)=20rename=20hardcoded=20doc?= =?UTF-8?q?ker-compose=20filename?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, the Docker Compose filename was hardcoded in _config.sh when used through utility scripts. In recent commits, I've renamed the filename without updating this configuration. Oopsie, running make commands was fine, but running bin scripts requiring compose failed. --- bin/_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/_config.sh b/bin/_config.sh index 19017bb3..840ed5b5 100644 --- a/bin/_config.sh +++ b/bin/_config.sh @@ -5,7 +5,7 @@ set -eo pipefail REPO_DIR="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd)" UNSET_USER=0 -COMPOSE_FILE="${REPO_DIR}/docker-compose.yml" +COMPOSE_FILE="${REPO_DIR}/compose.yml" COMPOSE_PROJECT="meet"