Skip to content

Commit

Permalink
fix(src): update template manifest path
Browse files Browse the repository at this point in the history
  • Loading branch information
manushak committed Jun 19, 2024
1 parent 3c09a50 commit 14b2b38
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,10 @@ const updatePackageJsonDependencies = async (
*/
const addTemplateManifest = async (destinationDir: string) => {
try {
const templateManifest = path.resolve(__dirname, './env-template.yml');
const templateManifest = path.resolve(
__dirname,
'./config/env-template.yml'
);
const destinationPath = path.resolve(destinationDir, 'manifest.yml');

const data = await fs.readFile(templateManifest, 'utf-8');
Expand Down

0 comments on commit 14b2b38

Please sign in to comment.