From 45e55d58e28bdc207028b1c39396b41b420c2bb6 Mon Sep 17 00:00:00 2001 From: Tony Kovanen Date: Sun, 14 May 2017 20:39:43 -0700 Subject: [PATCH] Support static types when deploying --- lib/read-metadata.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/read-metadata.js b/lib/read-metadata.js index fcdc178..349321d 100644 --- a/lib/read-metadata.js +++ b/lib/read-metadata.js @@ -112,6 +112,8 @@ async function readMetaData( } description = labels.description + } else if (type === 'static') { + // Do nothing } else { throw new TypeError(`Unsupported "deploymentType": ${type}`) }