Skip to content

Commit

Permalink
Fix permissions on artifact storage.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Apr 15, 2021
1 parent b14105e commit 3c8ba01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runner/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mkdir -p /home/$USER
chown $USER:$GROUP /home/$USER

# make the storage and cache writable, in case we didn't mount one
chown $USER /storage /cache
chown $USER:$GROUP /storage /cache


# prepare the depot
Expand All @@ -27,6 +27,7 @@ mkdir /home/$USER/.julia
chown $USER:$GROUP /home/$USER/.julia

mkdir -p /storage/artifacts
chown $USER:$GROUP /storage/artifacts
ln -s /storage/artifacts /home/$USER/.julia/artifacts


Expand Down

0 comments on commit 3c8ba01

Please sign in to comment.