Skip to content

Commit

Permalink
Merge pull request #8 from newfold-labs/fix/module-build-rsync
Browse files Browse the repository at this point in the history
Add missing trailing slash in rsync command
  • Loading branch information
circlecube authored Apr 17, 2024
2 parents a68fe9c + 5f7d300 commit 0d89030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/module-plugin-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0d89030

Please sign in to comment.