From 82e450c36d048b555d1b66bf21dd4d2449d5b562 Mon Sep 17 00:00:00 2001 From: talves Date: Tue, 27 Mar 2018 12:30:35 -0700 Subject: [PATCH] passthrough for backwards compatibility --- src/actions/config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/actions/config.js b/src/actions/config.js index 4a3311e4326a..6f272bbab216 100644 --- a/src/actions/config.js +++ b/src/actions/config.js @@ -86,7 +86,6 @@ async function getConfig(file, isPreloaded) { if (!isYaml) { console.log(`Response for ${ file } was not yaml. (Content-Type: ${ contentType })`); if (isPreloaded) return parseConfig(''); - throw new Error('Failed to load configuration.'); } return parseConfig(await response.text()); }