Browse Source

fix #659

tags/v1.2.0-rc1
Unknwon 11 years ago
parent
commit
515641d033
1 changed files with 7 additions and 4 deletions
  1. +7
    -4
      cmd/fix.go

+ 7
- 4
cmd/fix.go View File

@@ -14,6 +14,7 @@ import (
"runtime"
"strings"

"github.com/Unknwon/com"
"github.com/codegangsta/cli"

"github.com/gogits/gogs/models"
@@ -164,10 +165,12 @@ func runFixLocation(ctx *cli.Context) {

// Fix in authorized_keys file.
sshPath := path.Join(models.SshPath, "authorized_keys")
fmt.Printf("Fixing pathes in file: %s\n", sshPath)
if err := rewriteAuthorizedKeys(sshPath, oldPath, execPath); err != nil {
fmt.Println(err)
os.Exit(1)
if com.IsFile(sshPath) {
fmt.Printf("Fixing pathes in file: %s\n", sshPath)
if err := rewriteAuthorizedKeys(sshPath, oldPath, execPath); err != nil {
fmt.Println(err)
os.Exit(1)
}
}

// Fix position in gogs-repositories.


Loading…
Cancel
Save