From affd1e97c2b0c478f87526f31e5d59e1914d07ed Mon Sep 17 00:00:00 2001 From: Ben Phelps Date: Thu, 25 Aug 2022 14:07:14 +0300 Subject: [PATCH] remove debug lines --- src/utils/config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/utils/config.js b/src/utils/config.js index bb5a46ad6..758393ce1 100644 --- a/src/utils/config.js +++ b/src/utils/config.js @@ -3,11 +3,8 @@ import { existsSync, copyFile } from "fs"; export default function checkAndCopyConfig(config) { const configYaml = join(process.cwd(), "config", config); - console.log("config:", configYaml); if (!existsSync(configYaml)) { - console.log("does not exist"); const configSkeleton = join(process.cwd(), "src", "skeleton", config); - console.log("skeleton", configSkeleton); copyFile(configSkeleton, configYaml, (err) => { if (err) { console.log("error copying config", err);