From 4171bf486ea8358aa369c5b339ec46ae23c51815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 22 Aug 2018 15:20:47 -0400 Subject: [PATCH] fis case for build type when copying .env.nightly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/mobile.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/mobile.groovy b/ci/mobile.groovy index de7bf67e84..8be516bec5 100644 --- a/ci/mobile.groovy +++ b/ci/mobile.groovy @@ -5,7 +5,7 @@ android = load 'ci/android.groovy' def prep(type = 'debug') { /* select type of build */ switch (type) { - case 'debug': + case 'nightly': sh 'cp .env.nightly .env'; break case 'release': sh 'cp .env.prod .env'; break