https://github.com/modfin/govendorx
A small wrapper to govendor that enables you to list required missing dependencies
https://github.com/modfin/govendorx
Last synced: 12 months ago
JSON representation
A small wrapper to govendor that enables you to list required missing dependencies
- Host: GitHub
- URL: https://github.com/modfin/govendorx
- Owner: modfin
- License: mit
- Created: 2017-10-17T07:53:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-17T08:45:43.000Z (over 8 years ago)
- Last Synced: 2025-03-16T23:26:36.860Z (over 1 year ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# govendorx
A small wrapper to govendor that enables you to list required missing dependencies
govendox wrapps govendor. It adds functionality of listing and fetching missing but required
dependencies. `govendorx list +r` returns a subset of `govendorx list +m`.
It returns the missing decencies that are needed by the program and can be fetched
through an url.
## Install
```
go get -u github.com/kardianos/govendor
curl https://raw.githubusercontent.com/modfin/govendorx/master/govendorx > /usr/local/bin/govendorx
chmod +x /usr/local/bin/govendorx
```
## Motivation
In example, when mounting/symlinking a kit repo in the vendors folder and not wanting to pull
all the external decencies of the repo. This enables you to only pull external decencies of
used sub packages of the kit repo. This is useful when developing in a docker context
and kit development is done i parallel.
## Usage of extension to govendor
```
> govendorx list +r
> govendorx list +required
> govendorx fetch +r
```