From eefcaa8cd22f74d57139d3cebdb5711df0d17c62 Mon Sep 17 00:00:00 2001 From: trickypr Date: Mon, 6 Dec 2021 11:34:42 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Put=20the=20copy=20inputs=20arou?= =?UTF-8?q?nd=20the=20right=20way?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ src/utils/import.ts | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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