mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 03:11:51 +01:00
Allow start.sh from any working directory
This change to start.sh allows it to be executed from any working directory and always reference the gogs binary in the parent directory. Very helpful when calling start.sh from an init script.
This commit is contained in:
parent
bb26285a12
commit
eae08ea8f4
1 changed files with 1 additions and 1 deletions
|
@ -12,4 +12,4 @@ USER=$(whoami)
|
|||
HOME=$(grep "^$USER:" /etc/passwd | cut -d: -f6)
|
||||
export USER HOME PATH
|
||||
|
||||
cd "$(pwd)" && exec ./gogs web
|
||||
cd "$(dirname "$0")/.." && exec ./gogs web
|
||||
|
|
Loading…
Reference in a new issue