diff options
Diffstat (limited to 'docker/s6/gogs/setup')
-rwxr-xr-x | docker/s6/gogs/setup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/s6/gogs/setup b/docker/s6/gogs/setup index b361495b..bb77aa70 100755 --- a/docker/s6/gogs/setup +++ b/docker/s6/gogs/setup @@ -1,16 +1,16 @@ #!/bin/sh if ! test -d ~git/.ssh; then - gosu $USER mkdir -p ~git/.ssh + gosu "$USER" mkdir -p ~git/.ssh chmod 700 ~git/.ssh fi if ! test -f ~git/.ssh/environment; then - gosu $USER echo "GOGS_CUSTOM=${GOGS_CUSTOM}" > ~git/.ssh/environment + gosu "$USER" echo "GOGS_CUSTOM=${GOGS_CUSTOM}" > ~git/.ssh/environment chmod 600 ~git/.ssh/environment fi -cd /app/gogs +cd /app/gogs || exit 1 # Link volumed data with app data ln -sfn /data/gogs/log ./log |