From 707b2ae4ceb27d05cc54bb4ab88e563af1854769 Mon Sep 17 00:00:00 2001 From: Harminder virk Date: Wed, 31 Jul 2019 19:50:54 +0530 Subject: [PATCH] fix: instruction destination path for creating config file --- instructions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructions.ts b/instructions.ts index c2d78a6..1d2bb9a 100644 --- a/instructions.ts +++ b/instructions.ts @@ -22,7 +22,7 @@ export default function instructions ( { TemplateFile }: typeof sinkStatic, ) { templates.forEach((filename) => { - const dest = application.configPath(filename) + const dest = `${application.directoriesMap.get('config')}/${filename}` const src = join(__dirname, 'config', filename.replace(/.ts$/, '.txt')) new TemplateFile(projectRoot, dest, src)