From 88785a3abbda7d186c9ea254e617fce87174aabf Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Fri, 15 Jan 2021 16:47:09 -0600 Subject: [PATCH] fix: Separate infrastructure from infrastructure_templates --- {infrastructure => infrastructure_templates}/kube.yml.dot | 0 script/generate-kube | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {infrastructure => infrastructure_templates}/kube.yml.dot (100%) diff --git a/infrastructure/kube.yml.dot b/infrastructure_templates/kube.yml.dot similarity index 100% rename from infrastructure/kube.yml.dot rename to infrastructure_templates/kube.yml.dot diff --git a/script/generate-kube b/script/generate-kube index cf4578f9..99b51c94 100755 --- a/script/generate-kube +++ b/script/generate-kube @@ -4,7 +4,7 @@ const fs = require("fs"); const doT = require("dot"); doT.templateSettings = {...doT.templateSettings, strip: false}; -const dots = doT.process({path: "./infrastructure"}); +const dots = doT.process({path: "./infrastructure_templates"}); var packageText = fs.readFileSync("package.json", {encoding: "utf8"}); var packageConfig = JSON.parse(packageText);