From 51fbc11dad15c77ffe9ba22fc3557938f90d045f Mon Sep 17 00:00:00 2001 From: John McKisson Date: Tue, 7 May 2024 20:43:33 -0400 Subject: [PATCH] copy instead of move --- CI/deploy-mudlet-for-windows.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CI/deploy-mudlet-for-windows.sh b/CI/deploy-mudlet-for-windows.sh index 535aaf75639..8aae81b14eb 100644 --- a/CI/deploy-mudlet-for-windows.sh +++ b/CI/deploy-mudlet-for-windows.sh @@ -123,8 +123,8 @@ moveToUploadDir() { mkdir -p "$uploadDir" fi - echo "=== Moving files to upload directory ===" - mv "${PACKAGE_DIR}/" "$uploadDir/" + echo "=== Copying files to upload directory ===" + cp "${PACKAGE_DIR}/*" "$uploadDir/" echo "=== Listing files in upload directory ===" ls "$uploadDir"