From 3b557a0c64c2cd404aad856454ce039d777be4e8 Mon Sep 17 00:00:00 2001 From: void Date: Tue, 1 Jun 2021 15:44:16 +0000 Subject: [PATCH] pasar la variable de entorno JEKYLL_ENV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit la usamos para poder determinar si el sitio realiza optimizaciones de producción y a veces para las migraciones. fixes #4 Squashed commit of the following: commit 365438bb31e72a4313685afc9e094f84993994ce Author: f Date: Tue Jun 1 11:09:52 2021 -0300 hacer RAILS_ENV configurable commit 3377c4bd8ae41843b5846184ddacd5a84b8a1474 Author: f Date: Tue Jun 1 11:08:52 2021 -0300 pasar la variable de entorno JEKYLL_ENV la usamos para poder determinar si el sitio realiza optimizaciones de producción y a veces para las migraciones. --- haini.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/haini.sh b/haini.sh index c1da5dd..cdf257c 100755 --- a/haini.sh +++ b/haini.sh @@ -33,8 +33,9 @@ correr() { TERM="$TERM" \ USER="$USER" \ HOME="/home/suttier" \ - RAILS_ENV=development \ HAIN_ENV=true \ + RAILS_ENV="${RAILS_ENV:-development}" \ + JEKYLL_ENV="${JEKYLL_ENV:-development}" \ bwrap \ --unshare-user-try \ --unshare-ipc \