mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2025-12-12 17:31:15 +00:00
Prevent globbing and word splitting in cleanup.sh
This commit is contained in:
parent
bfafdf2896
commit
8c8682dac7
1 changed files with 1 additions and 1 deletions
|
|
@ -10,4 +10,4 @@ echo "Reading permissions from $_tmp_file"
|
|||
PERM=$(stat -c "%u:%g" "${INPUT_PROJECTBASEDIR%/}/$_tmp_file")
|
||||
|
||||
echo "Applying permissions $PERM to all files in the project base directory"
|
||||
chown -R $PERM "${INPUT_PROJECTBASEDIR%/}/"
|
||||
chown -R "$PERM" "${INPUT_PROJECTBASEDIR%/}/"
|
||||
|
|
|
|||
Loading…
Reference in a new issue