1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 04:11:00 -04:00

Remove pointless arg in bash script

This commit is contained in:
toast-ts 2024-02-02 07:27:28 +11:00
parent 0fdad56172
commit 56dff2e189

View File

@ -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