Skip to content

Commit

Permalink
fix: instruction destination path for creating config file
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jul 31, 2019
1 parent 9b4ca66 commit 707b2ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instructions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 707b2ae

Please sign in to comment.