From 1076537911b0759a524b43d3453c1e308d661ea5 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Wed, 17 Apr 2024 13:16:38 -0400 Subject: [PATCH] cleanup --- .github/workflows/module-plugin-test.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/module-plugin-test.yml b/.github/workflows/module-plugin-test.yml index a761306..cb5083f 100644 --- a/.github/workflows/module-plugin-test.yml +++ b/.github/workflows/module-plugin-test.yml @@ -199,14 +199,7 @@ jobs: - name: Sync New Module build files to node_modules dir for inclusion in plugin build if: ${{ inputs.sync-npm-package }} run: | - echo "destination: node_modules/@${{ inputs.module-repo }}/build" - ls -l node_modules/@${{ inputs.module-repo }}/build - echo 'Test file to see if rsync worked.' > vendor/${{ inputs.module-repo }}/build/test.txt - echo "source: vendor/${{ inputs.module-repo }}/build" - ls -l vendor/${{ inputs.module-repo }}/build - rsync -r --progress --human-readable "vendor/${{ inputs.module-repo }}/build/" "node_modules/@${{ inputs.module-repo }}/build" - echo "destination after rsync:" - ls -l node_modules/@${{ inputs.module-repo }}/build + rsync -r -v -h "vendor/${{ inputs.module-repo }}/build/" "node_modules/@${{ inputs.module-repo }}/build" - name: Build Plugin run: npm run build