You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

start.sh 353B

123456789101112131415
  1. #!/bin/sh -
  2. # Copyright 2014 The Gogs Authors. All rights reserved.
  3. # Use of this source code is governed by a MIT-style
  4. # license that can be found in the LICENSE file.
  5. #
  6. # start gogs web
  7. #
  8. IFS='
  9. '
  10. PATH=/bin:/usr/bin:/usr/local/bin
  11. USER=$(whoami)
  12. HOME=$(grep "^$USER:" /etc/passwd | cut -d: -f6)
  13. export USER HOME PATH
  14. cd "$(pwd)" && exec ./gogs web