From c0074cfef0ce1efc5013815d38286c9623804025 Mon Sep 17 00:00:00 2001 From: ebremner <ebremner@uwaterloo.ca> Date: Wed, 13 May 2020 15:20:26 -0400 Subject: [PATCH] ISTWCMS-3759: updating build script to only copy files instead of moving them --- build_gesso.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_gesso.sh b/build_gesso.sh index 5c04d5b1..a4994dd8 100755 --- a/build_gesso.sh +++ b/build_gesso.sh @@ -6,11 +6,11 @@ git checkout $gesso_version cd .. if [ -f "gulpfile.js" ]; then - mv gulpfile.js gesso + cp gulpfile.js gesso fi if [ -f "packages.json" ]; then - mv packages.json gesso + cp packages.json gesso fi ln -s "gesso/source" "source" -- GitLab