From bf693e72362bdb95f3be5e0823475ee279def2df Mon Sep 17 00:00:00 2001 From: Teck Meng Date: Tue, 4 Jun 2024 18:54:28 +0800 Subject: [PATCH] Refactor makefile to fix loadenvs command in deploy-test target --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 3f4cecc..fedf521 100644 --- a/makefile +++ b/makefile @@ -26,9 +26,9 @@ deploy-apps: pull deploy-ghost: pull { \ - @echo "Deploying the ghost stack..." ;\ + echo "Deploying the ghost stack..." ;\ set -a ;\ - source ./swarm/.env ;\ + . ./swarm/.env ;\ set +a ;\ docker stack deploy --compose-file ./swarm/ghost.yml ghost ;\ }