We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62e76bd commit 53a03b0Copy full SHA for 53a03b0
src/ci/run.sh
@@ -8,7 +8,7 @@ if [ -n "$CI_JOB_NAME" ]; then
8
echo "[CI_JOB_NAME=$CI_JOB_NAME]"
9
fi
10
11
-echo "whoami: $(whoami). Home: $HOME"
+echo "whoami: $(whoami). id: $(id -u) Home: $HOME"
12
echo "--- current directory ---"
13
pwd
14
ls -l
@@ -26,9 +26,8 @@ if [ "$NO_CHANGE_USER" = "" ]; then
26
chown -R user:user .
27
mkdir -p /cargo
28
chown -R user:user /cargo
29
- if [ -f /.dockerenv ]; then
30
- chown -R user:user /checkout
31
- fi
+ # TODO: don't do this in PR job
+ chown -R user:user /checkout
32
33
# Ensure that runners are able to execute git commands in the worktree,
34
# overriding the typical git protections. In our docker container we're running
0 commit comments