aboutsummaryrefslogtreecommitdiff
path: root/docker/s6/gogs/run
diff options
context:
space:
mode:
authorᴜɴᴋɴᴡᴏɴ <u@gogs.io>2020-08-23 15:17:54 +0800
committerGitHub <noreply@github.com>2020-08-23 15:17:54 +0800
commit92c5f94fe7fae17620ecb8895e287e9e66fb135c (patch)
tree71accea059544297cdeddc2bed2b6017729f1609 /docker/s6/gogs/run
parenta840ae90352f932d2b77cdbc0c78078b18a469c6 (diff)
shellcheck: fix warnings (#6274)
* Remove outdated files * Fix warnings
Diffstat (limited to 'docker/s6/gogs/run')
-rwxr-xr-xdocker/s6/gogs/run3
1 files changed, 2 insertions, 1 deletions
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