diff --git a/CHANGELOG.md b/CHANGELOG.md index acb1b53..9c0d1c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-a.11] + +### Fixed + +- Put the copy inputs around the right way + ## [1.0.0-a.9] ### Fixed diff --git a/src/utils/import.ts b/src/utils/import.ts index b76b68b..4d63d26 100644 --- a/src/utils/import.ts +++ b/src/utils/import.ts @@ -30,8 +30,8 @@ export const copyManual = async ( // By default, windows users do not have access to the permissions to create // symbolic links. As a work around, we will just copy the files instead await copyFile( - resolve(ENGINE_DIR, ...getChunked(name)), - resolve(SRC_DIR, ...getChunked(name)) + resolve(SRC_DIR, ...getChunked(name)), + resolve(ENGINE_DIR, ...getChunked(name)) ) } else { // Create the symlink