Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Commit

Permalink
πŸ› Put the copy inputs around the right way
Browse files Browse the repository at this point in the history
  • Loading branch information
trickypr committed Dec 6, 2021
1 parent 8cd3810 commit eefcaa8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/utils/import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eefcaa8

Please sign in to comment.