This commit is contained in:
Unknown 2014-03-02 15:25:09 -05:00
parent 9c3a8ff299
commit e9487cb59c
3 changed files with 84 additions and 5 deletions

View file

@ -4,9 +4,10 @@ import (
"fmt"
"os"
"os/exec"
"os/user"
"path/filepath"
"time"
"github.com/Unknwon/com"
)
var (
@ -27,11 +28,11 @@ func exePath() (string, error) {
}
func homeDir() string {
user, err := user.Current()
home, err := com.HomeDir()
if err != nil {
return "/"
}
return user.HomeDir
return home
}
func init() {
@ -68,7 +69,7 @@ func AddPublicKey(key *PublicKey) error {
if err != nil {
_, err2 := orm.Delete(key)
if err2 != nil {
// TODO: logo the error
// TODO: log the error
}
return err
}