Skip to content

Commit a668be4

Browse files
committed
run input commands without double quotes
1 parent e467f1a commit a668be4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/jscpd-duplication-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
TECH_STACK: ${{ inputs.tech_stack }}
5757
COMMAND_TO_RUN: ${{ inputs.command_to_run }}
5858
run: |
59-
"$COMMAND_TO_RUN"
59+
$COMMAND_TO_RUN
6060
cat report/jscpd-report.json
6161
mv report report-master
6262
@@ -67,7 +67,7 @@ jobs:
6767
env:
6868
COMMAND_TO_RUN: ${{ inputs.command_to_run }}
6969
run: |
70-
"$COMMAND_TO_RUN"
70+
$COMMAND_TO_RUN
7171
cat report/jscpd-report.json
7272
7373
- name: Extract duplication percentage - ${{ inputs.tech_stack }}

0 commit comments

Comments
 (0)