From 63bec97e746551d228bc4742118364d3bd029256 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 28 Mar 2024 17:33:26 -0400 Subject: [PATCH] make rsync command verbose when syncing module build file with npm installed files --- .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 601c259..6632b95 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 vendor/${{ inputs.module-repo }}/build node_modules/@${{ inputs.module-repo }}/build + run: rsync -r -v -h --progress vendor/${{ inputs.module-repo }}/build node_modules/@${{ inputs.module-repo }}/build - name: Build Plugin run: npm run build