This commit is contained in:
kolaente 2020-08-31 22:21:52 +02:00
parent a835549a7f
commit a9f59c0ab3
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 4 additions and 4 deletions

View File

@ -178,10 +178,6 @@ func IntegrationTest() {
runAndStreamOutput("go", "test", Goflags[0], "-p", "1", PACKAGE+"/pkg/integrations")
}
func Lint() {
}
func Fmt() {
}
@ -190,6 +186,10 @@ func FmtCheck() {
}
func Lint() {
}
// Generates static content into the final binary
func Generate() error {
return exec.Command("go", "generate", PACKAGE+"/pkg/static").Run()