Giter Site home page Giter Site logo

Comments (5)

syohex avatar syohex commented on July 20, 2024

Some package like os/user cannot be cross-compiled. Released packages of ghq are
cross-compiled on Linux 64bit, so cross-compiled binaries of Windows and MacOSX does
not work. Such packages should be removed and rewrite if author releases binaries for
various platforms.

See

from ghq.

motemen avatar motemen commented on July 20, 2024

Thank you, I will consult it shortly.

from ghq.

syohex avatar syohex commented on July 20, 2024

FYI. https://github.com/mitchellh/go-homedir

diff --git a/local_repository.go b/local_repository.go
index 59edc8d..a7c8fab 100644
--- a/local_repository.go
+++ b/local_repository.go
@@ -4,12 +4,12 @@ import (
    "fmt"
    "net/url"
    "os"
-   "os/user"
    "path"
    "path/filepath"
    "strings"

    "github.com/motemen/ghq/utils"
+        "github.com/mitchellh/go-homedir"
 )

 type LocalRepository struct {
@@ -170,10 +170,10 @@ func localRepositoryRoots() []string {
    utils.PanicIf(err)

    if len(_localRepositoryRoots) == 0 {
-       usr, err := user.Current()
+       homedir, err := homedir.Dir()
        utils.PanicIf(err)

-       _localRepositoryRoots = []string{filepath.Join(usr.HomeDir, ".ghq")}
+       _localRepositoryRoots = []string{filepath.Join(homedir, ".ghq")}
    }

    for i, v := range _localRepositoryRoots {

from ghq.

motemen avatar motemen commented on July 20, 2024

Cool

from ghq.

shrkw avatar shrkw commented on July 20, 2024

Awesome! 👏

from ghq.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.