func init()

in commands/deps_resolve.go [41:49]


func init() {
	DepsResolveCommand.PersistentFlags().StringVarP(&outDir, "output", "o", "",
		"the directory to output the resolved dependencies' licenses, if not set the dependencies' licenses won't be saved")
	DepsResolveCommand.PersistentFlags().StringVarP(&summaryTplPath, "summary", "s", "",
		"the template file to write the summary of dependencies' licenses, a new file named \"LICENSE\" will be "+
			"created in the same directory as the template file, to save the final summary.")
	DepsResolveCommand.PersistentFlags().StringVarP(&licensePath, "license", "l", "",
		"the path to the LICENSE file to be generated. The default summary format will be used if summary template file is not specified")
}