github.com/meatballhat/deppy@v0.0.0-20151116212532-116c2a9aa48d/doc.go (about)

     1  /*
     2  
     3  Command deppy helps build packages reproducibly by fixing
     4  their dependencies.
     5  
     6  Example Usage
     7  
     8  Save currently-used dependencies to file Deps:
     9  
    10  	$ deppy save
    11  
    12  Build project using saved dependencies:
    13  
    14  	$ deppy go install
    15  
    16  or
    17  
    18  	$ GOPATH=`deppy path`:$GOPATH
    19  	$ go install
    20  
    21  */
    22  package main