From aa364b6cd76dbb855489613b57b65f7ff1d7551e Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Thu, 24 Aug 2017 15:21:12 +0200 Subject: [PATCH] deploy banner fix --- gulpfile.babel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 49ce8f3..6d562ba 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -313,9 +313,9 @@ const buildBanner = (done) => { const deployBanner = (done) => { let deployTarget - if ($.util.env.production) { + if ($.util.env.live) { deployTarget = 'Live' - } else if ($.util.env.staging) { + } else if ($.util.env.beta) { deployTarget = 'Beta' } else { deployTarget = 'Gamma'