Fix: Correcting check searching for docker compose plugin (#5904) (#5917)

This commit is contained in:
ShanSanear 2024-02-26 22:21:43 +01:00 committed by GitHub
parent d2f9b5d5e5
commit 86811d0733
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,8 +56,8 @@ if ! command -v docker &> /dev/null ; then
exit 1
fi
if ! command -v docker compose &> /dev/null ; then
echo "docker compose executable not found. Is docker compose installed?"
if ! docker compose &> /dev/null ; then
echo "docker compose plugin not found. Is docker compose installed?"
exit 1
fi