├── .gitignore ├── DOCS.md ├── LICENSE ├── Makefile ├── README.md ├── archive.go ├── config.go ├── detect.go ├── dl.go ├── eget.go ├── extract.go ├── find.go ├── flags.go ├── go.mod ├── go.sum ├── home └── home.go ├── man └── eget.md ├── test ├── eget.toml └── test_eget.go ├── tools ├── build-all.go └── build-version.go ├── verify.go └── version.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/.gitignore -------------------------------------------------------------------------------- /DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/DOCS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/README.md -------------------------------------------------------------------------------- /archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/archive.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/config.go -------------------------------------------------------------------------------- /detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/detect.go -------------------------------------------------------------------------------- /dl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/dl.go -------------------------------------------------------------------------------- /eget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/eget.go -------------------------------------------------------------------------------- /extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/extract.go -------------------------------------------------------------------------------- /find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/find.go -------------------------------------------------------------------------------- /flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/flags.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/go.sum -------------------------------------------------------------------------------- /home/home.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/home/home.go -------------------------------------------------------------------------------- /man/eget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/man/eget.md -------------------------------------------------------------------------------- /test/eget.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_eget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/test/test_eget.go -------------------------------------------------------------------------------- /tools/build-all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/tools/build-all.go -------------------------------------------------------------------------------- /tools/build-version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/tools/build-version.go -------------------------------------------------------------------------------- /verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyedidia/eget/HEAD/verify.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | var Version = "1.3.4+src" 4 | --------------------------------------------------------------------------------