mirror of
https://github.com/sonarsource/sonarcloud-github-action.git
synced 2026-06-06 10:47:09 +00:00
9 lines
179 B
Bash
9 lines
179 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}/"
|
|
|