Skip to content

Commit 540792c

Browse files
Revert "SQSCANGHA-28 Support passing args with spaces"
This reverts commit 16be80a.
1 parent e56fc17 commit 540792c

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/qa.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@ jobs:
1919
- name: Run action with args
2020
uses: ./
2121
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
2423
env:
2524
SONAR_HOST_URL: http://not_actually_used
2625
- name: Assert
2726
run: |
28-
./test/assertFileContains ./output.properties "sonar.someArg=a value with spaces"
27+
./test/assertFileContains ./output.properties "sonar.someArg=aValue"
2928
projectBaseDirInputTest:
3029
name: >
3130
'projectBaseDir' input

entrypoint.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,5 @@ fi
3232

3333
unset JAVA_HOME
3434

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}
3736

0 commit comments

Comments
 (0)