Skip to content

Commit

Permalink
Explictly specify the target folder of assets (#1359)
Browse files Browse the repository at this point in the history
  • Loading branch information
dolauli authored Jul 25, 2024
1 parent f9c4db3 commit 8812752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion powershell/plugins/powershell-v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function copyRequiredFiles(project: Project) {
await copyResources(
join(resources, 'assets'),
async (fname, content) =>
project.state.writeFile(fname, content, undefined, 'source-file-other'),
project.state.writeFile(join(project.baseFolder, fname), content, undefined, 'source-file-other'),
undefined,
transformOutput
);
Expand Down

0 comments on commit 8812752

Please sign in to comment.