From 873ef5e8b6786c9e2ee982e1a424d4baa7757fe9 Mon Sep 17 00:00:00 2001 From: mo khan Date: Tue, 27 Oct 2020 15:51:11 -0600 Subject: fix: check of docker-compose is avilable --- bin/setup | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/setup b/bin/setup index 914b7f4..12c0798 100755 --- a/bin/setup +++ b/bin/setup @@ -7,4 +7,6 @@ cd "$(dirname "$0")/.." bundle config --local path vendor bundle config --local jobs "$(nproc)" bundle install -docker-compose up -d +if command -v docker-compose; then + docker-compose up -d +fi -- cgit v1.2.3