From a4f9b086bf9fb852f4b6d971213cc1e3bba5b5aa 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 7fe736d5f0a4..382c830119b4 100644 --- a/src/actions/config.js +++ b/src/actions/config.js @@ -79,7 +79,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()); }