Browse Source

Work on #516

for-closed-social
Unknwon 9 years ago
parent
commit
f03b6be8f9
3 changed files with 9 additions and 3 deletions
  1. +7
    -1
      cmd/serve.go
  2. +1
    -1
      gogs.go
  3. +1
    -1
      templates/.VERSION

+ 7
- 1
cmd/serve.go View File

@ -171,7 +171,13 @@ func runServ(k *cli.Context) {
uuid := uuid.NewV4().String()
os.Setenv("uuid", uuid)
gitcmd := exec.Command(verb, repoPath)
var gitcmd *exec.Cmd
verbs := strings.Split(verb, " ")
if len(verbs) == 2 {
gitcmd = exec.Command(verbs[0], verbs[1], repoPath)
} else {
gitcmd = exec.Command(verb, repoPath)
}
gitcmd.Dir = setting.RepoRootPath
gitcmd.Stdout = os.Stdout
gitcmd.Stdin = os.Stdin

+ 1
- 1
gogs.go View File

@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
const APP_VER = "0.5.4.0930 Beta"
const APP_VER = "0.5.4.1001 Beta"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())

+ 1
- 1
templates/.VERSION View File

@ -1 +1 @@
0.5.4.0930 Beta
0.5.4.1001 Beta

Loading…
Cancel
Save