Skip to content

Commit

Permalink
add missing trailing slash in rsync command
Browse files Browse the repository at this point in the history
  • Loading branch information
circlecube committed Apr 17, 2024
1 parent a68fe9c commit 5f7d300
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 5f7d300

Please sign in to comment.