From 6e38339228dc0e8f80080b167d8310f48c11adc0 Mon Sep 17 00:00:00 2001 From: syui Date: Wed, 3 Apr 2024 04:42:06 +0900 Subject: [PATCH] fix --- test/cron.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cron.zsh b/test/cron.zsh index 692dea2..dd361d0 100644 --- a/test/cron.zsh +++ b/test/cron.zsh @@ -1,7 +1,7 @@ function cron() { t=`docker ps |grep aios|grep R` if [ -z "$t" ];then - docker compose up -d + exit fi - exit + docker compose up -d }