From 56bdbd8bf7ccac7cc0735f499b08caf725c8274a Mon Sep 17 00:00:00 2001 From: Ari <54780610+4j0x@users.noreply.github.com> Date: Fri, 26 Jan 2024 18:09:39 -0600 Subject: [PATCH 1/2] Update install.sh --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 5719ddab..eaf20932 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -49,7 +49,7 @@ chmod +x ./bobarr.sh echo "downloading docker images" -docker-compose pull +docker compose pull echo "" echo "bobarr installation is now complete!" From 8fc4173400049cddc4043e41c39d88e3e090112c Mon Sep 17 00:00:00 2001 From: Ari <54780610+4j0x@users.noreply.github.com> Date: Sat, 27 Jan 2024 17:47:54 -0600 Subject: [PATCH 2/2] Update install.sh --- scripts/install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index eaf20932..39c8a1a2 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -49,7 +49,11 @@ chmod +x ./bobarr.sh echo "downloading docker images" -docker compose pull +if command -v docker-compose &> /dev/null; then + docker-compose pull +else + docker compose pull +fi echo "" echo "bobarr installation is now complete!"