1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-04 10:25:01 +02:00
sap-jenkins-library/main.go
Oliver Nocon 220748d150
Step generation: allow usage of go generate (#1793)
* 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>
2020-07-17 08:06:11 +02:00

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()
}