From 56dff2e189d137a0778a360326cb9b7044bdea39 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Fri, 2 Feb 2024 07:27:28 +1100 Subject: [PATCH] Remove pointless arg in bash script --- startDocker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/startDocker.sh b/startDocker.sh index 4b55996..5f07505 100644 --- a/startDocker.sh +++ b/startDocker.sh @@ -1,6 +1,6 @@ #!/bin/bash -docker compose -f docker-compose.bot.yml build bot && \ -docker compose -f docker-compose.bot.yml up -d bot +docker compose -f docker-compose.bot.yml build && \ +docker compose -f docker-compose.bot.yml up -d exit 0