mirror of https://github.com/k3s-io/k3s
23 lines
291 B
Go
23 lines
291 B
Go
![]() |
/*
|
||
|
|
||
|
Command godep helps build packages reproducibly by fixing
|
||
|
their dependencies.
|
||
|
|
||
|
Example Usage
|
||
|
|
||
|
Save currently-used dependencies to file Godeps:
|
||
|
|
||
|
$ godep save
|
||
|
|
||
|
Build project using saved dependencies:
|
||
|
|
||
|
$ godep go install
|
||
|
|
||
|
or
|
||
|
|
||
|
$ GOPATH=`godep path`:$GOPATH
|
||
|
$ go install
|
||
|
|
||
|
*/
|
||
|
package main
|