mirror of
https://github.com/sonarsource/sonarcloud-github-action.git
synced 2026-06-06 09:17:07 +00:00
9 lines
192 B
Bash
9 lines
192 B
Bash
#!/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}/.scannerwork/"
|
|
|