mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-04 10:25:01 +02:00
220748d150
* Step generation: allow usage of go generate * Update DEVELOPMENT.md * move generate command to main.go (#1809) * Update main.go * Update DEVELOPMENT.md * Update piper.go * align path usage Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
12 lines
203 B
Go
12 lines
203 B
Go
package main
|
|
|
|
//go:generate go run pkg/generator/step-metadata.go --metadataDir=./resources/metadata/ --targetDir=./cmd/
|
|
|
|
import (
|
|
"github.com/SAP/jenkins-library/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|