From 92c5f94fe7fae17620ecb8895e287e9e66fb135c Mon Sep 17 00:00:00 2001 From: ᴜɴᴋɴᴡᴏɴ Date: Sun, 23 Aug 2020 15:17:54 +0800 Subject: shellcheck: fix warnings (#6274) * Remove outdated files * Fix warnings --- docker/s6/gogs/run | 3 ++- docker/s6/gogs/setup | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'docker/s6/gogs') diff --git a/docker/s6/gogs/run b/docker/s6/gogs/run index edcf49ce..72db3f05 100755 --- a/docker/s6/gogs/run +++ b/docker/s6/gogs/run @@ -1,7 +1,8 @@ #!/bin/sh if test -f ./setup; then + # shellcheck disable=SC2039,SC1091 source ./setup fi -exec gosu $USER /app/gogs/gogs web +exec gosu "$USER" /app/gogs/gogs web 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 -- cgit v1.2.3