From a4484021e8fa8aa7b1d69ef97deea132a9e37787 Mon Sep 17 00:00:00 2001 From: Jan Keromnes Date: Thu, 11 Apr 2019 18:31:50 +0200 Subject: [PATCH] Ensure Gitpod init always succeeds (#2379) --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index e2484bdb2..ba7746409 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -10,7 +10,7 @@ ports: tasks: - init: > cp config/sample_application.yml config/application.yml && - bin/setup 2>/dev/null + bin/setup 2>/dev/null || true command: > while [ -z "${ALGOLIASEARCH_APPLICATION_ID:=$(cat config/application.yml | grep ALGOLIASEARCH_APPLICATION_ID | sed 's/.*:\s*//')}" ] || [ -z "${ALGOLIASEARCH_SEARCH_ONLY_KEY:=$(cat config/application.yml | grep ALGOLIASEARCH_SEARCH_ONLY_KEY | sed 's/.*:\s*//')}" ] ||