Skip to content

Commit

Permalink
chore: Update docker compose check
Browse files Browse the repository at this point in the history
  • Loading branch information
classicalliu authored and Flouse committed Oct 14, 2023
1 parent e8c8d10 commit cc0c9de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kicker
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ WORKSPACE="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
# TODO cargo fetch via proxy

DOCKER_COMPOSE="docker compose"
if command -v docker compose &> /dev/null
if docker compose version &> /dev/null
then
DOCKER_COMPOSE="docker compose"
elif command -v docker-compose &> /dev/null
elif docker-compose version &> /dev/null
then
DOCKER_COMPOSE="docker-compose"
else
Expand Down

0 comments on commit cc0c9de

Please sign in to comment.