mirror of
https://github.com/gogs/gogs.git
synced 2026-01-02 21:50:01 +01:00
9 lines
142 B
Bash
Executable File
9 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -f ./setup; then
|
|
# shellcheck disable=SC2039,SC1091,SC3046
|
|
source ./setup
|
|
fi
|
|
|
|
exec gosu "$USER" /app/gogs/gogs web
|