From 8da33ba58ea3fa9f84ecbc1c97bc66ac24f0b6a8 Mon Sep 17 00:00:00 2001 From: Adam Cooke Date: Wed, 26 Apr 2017 20:36:17 +0100 Subject: [PATCH] ensure all logging goes to STDOUT when using `postal run` --- bin/postal | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/postal b/bin/postal index 767f453..0006fa7 100755 --- a/bin/postal +++ b/bin/postal @@ -46,8 +46,7 @@ case "$1" in ;; run) - export LOG_TO_STDOUT=1 - run "procodile start -f --no-respawn --stop-when-none" + run "LOG_TO_STDOUT=1 procodile start -f --no-respawn --stop-when-none" ;; upgrade)