Updated NotVendored flag
Updated travis matrix
Updated build log
This commit is contained in:
notzippy@gmail.com
2020-04-29 22:01:28 -07:00
parent 36bd6b944a
commit 9d3a554bec
3 changed files with 11 additions and 21 deletions

View File

@@ -6,7 +6,7 @@ type (
ImportCommand
SkeletonPath string `short:"s" long:"skeleton" description:"Path to skeleton folder (Must exist on GO PATH)" required:"false"`
Package string `short:"p" long:"package" description:"The package name, this becomes the repfix to the app name, if defined vendored is set to true" required:"false"`
NotVendored bool `short:"V" long:"vendor" description:"True if project should not be configured with a go.mod"`
NotVendored bool `long:"not-vendor" description:"True if project should not be configured with a go.mod, this requires you to have the project on the GOPATH"`
Run bool `short:"r" long:"run" description:"True if you want to run the application right away"`
Callback func() error
}