mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
* Fix dot files not being copied over on non-root builds (#9740) When running `astro build` outside of where the astro files are, dotfiles are not copied over because the `includeDotfiles` parameter is not passed in. * update changeset * Update changeset description --------- Co-authored-by: Arsh <69170106+lilnasy@users.noreply.github.com>
This commit is contained in:
parent
7356336d18
commit
73d7440200
2 changed files with 6 additions and 1 deletions
5
.changeset/slimy-jobs-smash.md
Normal file
5
.changeset/slimy-jobs-smash.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"astro": patch
|
||||
---
|
||||
|
||||
Fixes an issue where dot files were not copied over from the public folder to the output folder, when build command was run in a folder other than the root of the project.
|
|
@ -439,7 +439,7 @@ async function cleanServerOutput(
|
|||
// Clean out directly if the outDir is outside of root
|
||||
if (out.toString() !== opts.settings.config.outDir.toString()) {
|
||||
// Copy assets before cleaning directory if outside root
|
||||
await copyFiles(out, opts.settings.config.outDir);
|
||||
await copyFiles(out, opts.settings.config.outDir, true);
|
||||
await fs.promises.rm(out, { recursive: true });
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue