Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I've created a recent fork of this project #108

Open
dfernandezm opened this issue Oct 8, 2020 · 2 comments
Open

I've created a recent fork of this project #108

dfernandezm opened this issue Oct 8, 2020 · 2 comments

Comments

@dfernandezm
Copy link

I found myself wanting to use the project and also learning Go and I decided this tool deserved a recent fork. I haven't checked all the forks, but the 8-10 I've seen are from 5-6 years ago.

I'll try and slowly backfill the open PRs and see about the issues, but my commitment is mostly few nights and weekend. I would really welcome any contributors and I'll commit to review and merge PRs as often as I can.

@dfernandezm dfernandezm changed the title I created a recent fork of this project I've created a recent fork of this project Oct 8, 2020
@ElyDantas
Copy link

I've gotten the error bellow trying to build Joe, couldn't find a solution, updated joe's folder with your files from your fork and still the same problem, could you help me?

./tool.sh build
joe.go:5:3: no required module provides package github.com/codegangsta/cli: working directory is not part of a module
utils.go:5:2: no required module provides package github.com/termie/go-shutil: working directory is not part of a module
joe.go:5:3: no required module provides package github.com/codegangsta/cli: working directory is not part of a module
utils.go:5:2: no required module provides package github.com/termie/go-shutil: working directory is not part of a module
joe.go:5:3: no required module provides package github.com/codegangsta/cli: working directory is not part of a module
utils.go:5:2: no required module provides package github.com/termie/go-shutil: working directory is not part of a module
joe.go:5:3: no required module provides package github.com/codegangsta/cli: working directory is not part of a module
utils.go:5:2: no required module provides package github.com/termie/go-shutil: working directory is not part of a module
cmd/go: unsupported GOOS/GOARCH pair darwin/386
joe.go:5:3: no required module provides package github.com/codegangsta/cli: working directory is not part of a module
utils.go:5:2: no required module provides package github.com/termie/go-shutil: working directory is not part of a module
joe built

@kendfss
Copy link

kendfss commented Oct 2, 2021

@ElyDantas the problem is that go doesn't know where to find the dependencies.
In order to fix this you would need to go get [package url] for each one.
However, if you do this you may find that github.com/codegangsta/cli declares its path as github.com/urfave/cli.
In which case you'll want to update the import names in the joe.go and tool.sh files.

here's a fork that patches this issue.
You only need to go install to get things running.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants