From 5f7d300046faff5b60e9091445f0de01c66f102b Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Wed, 17 Apr 2024 13:19:52 -0400 Subject: [PATCH] add missing trailing slash in rsync command --- .github/workflows/module-plugin-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/module-plugin-test.yml b/.github/workflows/module-plugin-test.yml index 7056b20..645e1c4 100644 --- a/.github/workflows/module-plugin-test.yml +++ b/.github/workflows/module-plugin-test.yml @@ -195,7 +195,7 @@ jobs: - name: Sync Module build files to node_modules dir if: ${{ inputs.sync-npm-package }} - run: rsync -r -v -h --progress vendor/${{ inputs.module-repo }}/build node_modules/@${{ inputs.module-repo }}/build + run: rsync -r -v -h "vendor/${{ inputs.module-repo }}/build/" "node_modules/@${{ inputs.module-repo }}/build" - name: Build Plugin run: npm run build