mirror of
https://github.com/gogs/gogs.git
synced 2026-05-30 09:03:41 +02:00
9 lines
110 B
Bash
Executable File
9 lines
110 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -f ./setup; then
|
|
source ./setup
|
|
fi
|
|
|
|
export USER=git
|
|
exec gosu $USER /app/gogs/gogs web
|