Files
Atay-Makhzan/scripts/start.sh
T

16 lines
364 B
Bash
Raw Normal View History

2014-04-07 00:11:18 +08:00
#!/bin/sh -
2014-04-05 22:46:32 +08:00
# Copyright 2014 The Gogs Authors. All rights reserved.
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file.
#
2014-03-31 15:54:15 +08:00
# start gogs web
#
2014-08-30 15:12:53 +02:00
IFS='
2014-04-07 00:11:18 +08:00
'
PATH=/bin:/usr/bin:/usr/local/bin
USER=$(whoami)
HOME=$(grep "^$USER:" /etc/passwd | cut -d: -f6)
2014-04-07 00:11:18 +08:00
export USER HOME PATH
2015-01-17 16:52:42 -05:00
cd "$(dirname "$0")/.." && exec ./gogs web