├── .editorconfig ├── .github └── workflows │ ├── go.yml │ └── goreleaser.yml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── .goreleaser.yml ├── .travis.yml ├── LICENSE.md ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── goreleaser.yml ├── main.go ├── makeshellfn.sh ├── scripts └── build-site.sh ├── shell_equinoxio.go ├── shell_godownloader.go ├── shell_raw.go ├── shellfn.go ├── source.go ├── tree └── github.com │ ├── ValeLint │ └── vale.yaml │ ├── akupila │ └── gitprompt.yaml │ ├── caarlos0 │ ├── bandep.yaml │ ├── clone-org.yaml │ ├── fork-cleaner.yaml │ ├── github-vacations.yaml │ ├── karmahub.yaml │ ├── name-generator.yaml │ ├── org-stats.yaml │ └── svu.yaml │ ├── client9 │ ├── csstool.yaml │ └── misspell.yaml │ ├── crazy-max │ └── travis-wait-enhanced.yml │ ├── docwhat │ ├── chronic.yaml │ └── go-importd.yaml │ ├── fat0troll │ └── yapusher.yaml │ ├── getantibody │ └── antibody.yaml │ ├── gohugoio │ └── hugo.yaml │ ├── golangci │ └── golangci-lint.yaml │ ├── gopinath-langote │ └── 1build.yaml │ ├── goreleaser │ ├── goreleaser.yaml │ └── nfpm.yaml │ ├── haya14busa │ └── xtag.yaml │ ├── ianwalter │ └── gotime.yaml │ ├── k8spin │ └── k8spin_cli.yaml │ ├── kira │ └── node-prune.yaml │ ├── markbates │ └── refresh.yml │ ├── mschneider82 │ └── sharecmd.yaml │ ├── mvdan │ └── sh.yaml │ ├── pantheon-systems │ └── autotag.yaml │ ├── reviewdog │ └── reviewdog.yaml │ ├── ryantking │ └── rudder.yml │ ├── serverless │ └── event-gateway.yaml │ ├── syntaqx │ ├── serve.yaml │ └── swarm-api.yaml │ ├── tdewolff │ └── minify.yaml │ ├── twpayne │ └── chezmoi.yaml │ └── wio │ └── wio.yaml ├── treewalk.go └── www ├── .gitignore ├── config.toml ├── content ├── add-your-project.md ├── introduction.md └── projects.md ├── data └── .gitignore ├── layouts └── page │ └── projects.html └── static └── favicon.ico /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/.github/workflows/goreleaser.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/go.sum -------------------------------------------------------------------------------- /goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/goreleaser.yml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/main.go -------------------------------------------------------------------------------- /makeshellfn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/makeshellfn.sh -------------------------------------------------------------------------------- /scripts/build-site.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/scripts/build-site.sh -------------------------------------------------------------------------------- /shell_equinoxio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/shell_equinoxio.go -------------------------------------------------------------------------------- /shell_godownloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/shell_godownloader.go -------------------------------------------------------------------------------- /shell_raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/shell_raw.go -------------------------------------------------------------------------------- /shellfn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/shellfn.go -------------------------------------------------------------------------------- /source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/source.go -------------------------------------------------------------------------------- /tree/github.com/ValeLint/vale.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/akupila/gitprompt.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tree/github.com/caarlos0/bandep.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/caarlos0/clone-org.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/caarlos0/fork-cleaner.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/caarlos0/github-vacations.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/caarlos0/karmahub.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/caarlos0/name-generator.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/caarlos0/org-stats.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/caarlos0/svu.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/client9/csstool.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/client9/misspell.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/crazy-max/travis-wait-enhanced.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/docwhat/chronic.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tree/github.com/docwhat/go-importd.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tree/github.com/fat0troll/yapusher.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/getantibody/antibody.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/gohugoio/hugo.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/golangci/golangci-lint.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/gopinath-langote/1build.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tree/github.com/goreleaser/goreleaser.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/goreleaser/nfpm.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/haya14busa/xtag.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/ianwalter/gotime.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tree/github.com/k8spin/k8spin_cli.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/kira/node-prune.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tree/github.com/markbates/refresh.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/mschneider82/sharecmd.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/mvdan/sh.yaml: -------------------------------------------------------------------------------- 1 | source: raw 2 | exe: shfmt 3 | -------------------------------------------------------------------------------- /tree/github.com/pantheon-systems/autotag.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/reviewdog/reviewdog.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/ryantking/rudder.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/serverless/event-gateway.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/syntaqx/serve.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/syntaqx/swarm-api.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/tdewolff/minify.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/twpayne/chezmoi.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree/github.com/wio/wio.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /treewalk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/treewalk.go -------------------------------------------------------------------------------- /www/.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | static/github.com/ 3 | -------------------------------------------------------------------------------- /www/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/www/config.toml -------------------------------------------------------------------------------- /www/content/add-your-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/www/content/add-your-project.md -------------------------------------------------------------------------------- /www/content/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/www/content/introduction.md -------------------------------------------------------------------------------- /www/content/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/www/content/projects.md -------------------------------------------------------------------------------- /www/data/.gitignore: -------------------------------------------------------------------------------- 1 | projects/*.yaml 2 | -------------------------------------------------------------------------------- /www/layouts/page/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/www/layouts/page/projects.html -------------------------------------------------------------------------------- /www/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goreleaser/godownloader/HEAD/www/static/favicon.ico --------------------------------------------------------------------------------