Files
revel-cmd/model/command/build.go
notzippy@gmail.com 07d67846c1 Restructured command config
Removed go/build reference in clean
2020-04-26 22:28:46 -07:00

11 lines
407 B
Go

package command
type (
Build struct {
ImportCommand
TargetPath string `short:"t" long:"target-path" description:"Path to target folder. Folder will be completely deleted if it exists" required:"false"`
Mode string `short:"m" long:"run-mode" description:"The mode to run the application in"`
CopySource bool `short:"s" long:"include-source" description:"Copy the source code as well"`
}
)