mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2026-02-06 23:42:17 +00:00
how to install? #307
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dirsigler on GitHub.
Hello,
I am new to Go and therefore don't exactly know how to build this tool.
go version
go version go1.10.1 linux/amd64
/var/www/_tests/transfer.sh# ls
cmd extras lock.json main.go manifest.json README.md server Vagrantfile vendor
echo $GOROOT
/usr/lib/go-1.10/
echo $GOPATH
/var/www/_tests/transfer.sh/
go run main.go -provider=local --listener :8080 --temp-path=/tmp/ --basedir=/tmp/
main.go:3:8: cannot find package "github.com/dutchcoders/transfer.sh/cmd" in any of:
/usr/lib/go-1.10/src/github.com/dutchcoders/transfer.sh/cmd (from $GOROOT)
/var/www/_tests/transfer.sh/src/github.com/dutchcoders/transfer.sh/cmd (from $GOPATH)
@paolafrancesca commented on GitHub:
hi @0xE02B7 , GOPATH must point to a directory with inside a path like
src/github.com/dutchcoders/transfer.shso you should decide what's your GOPATH, create a
srcdirectory inside and then clone this repository ingithub.com/dutchcoders/transfer.shlet me know if you solved