File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,12 @@ jobs:
19
19
- name : Run action with args
20
20
uses : ./
21
21
with :
22
- args : >-
23
- "-Dsonar.someArg=a value with spaces" -Dsonar.scanner.dumpToFile=./output.properties
22
+ args : -Dsonar.someArg=aValue -Dsonar.scanner.dumpToFile=./output.properties
24
23
env :
25
24
SONAR_HOST_URL : http://not_actually_used
26
25
- name : Assert
27
26
run : |
28
- ./test/assertFileContains ./output.properties "sonar.someArg=a value with spaces "
27
+ ./test/assertFileContains ./output.properties "sonar.someArg=aValue "
29
28
projectBaseDirInputTest :
30
29
name : >
31
30
'projectBaseDir' input
Original file line number Diff line number Diff line change 32
32
33
33
unset JAVA_HOME
34
34
35
- eval " args=(${INPUT_ARGS} )"
36
- sonar-scanner $debug_flag " -Dsonar.projectBaseDir=${INPUT_PROJECTBASEDIR} " " ${args[@]} "
35
+ sonar-scanner $debug_flag -Dsonar.projectBaseDir=${INPUT_PROJECTBASEDIR} ${INPUT_ARGS}
37
36
You can’t perform that action at this time.
0 commit comments