From 4cdc129f2f5c855abb0106245a183ba0968a173c Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 30 Jun 2019 19:10:45 +0200 Subject: [PATCH] Adjust Gitpod to run Jekyll generate in pre-build (#9739) * Adjust Gitpod to run Jekyll generate in pre-build * Works-around parallel execution of init tasks in GitPod --- .gitpod.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 16d7a920856..d51137f4222 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,6 +1,5 @@ tasks: - - init: gem install bundler -v 2.0.1 - - init: bundle install + - init: gem install bundler -v 2.0.1 && bundle install && bundle exec rake generate ports: - port: 4000 onOpen: open-browser