mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2025-12-13 01:41:15 +00:00
8 lines
No EOL
177 B
Bash
Executable file
8 lines
No EOL
177 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
_tmp_file=$(ls "${INPUT_PROJECTBASEDIR}/" | head -1)
|
|
PERM=$(stat -c "%u:%g" "${INPUT_PROJECTBASEDIR}/$_tmp_file")
|
|
|
|
chown -R $PERM "${INPUT_PROJECTBASEDIR}/" |