14 lines
183 B
Go
14 lines
183 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
"os/exec"
|
|
)
|
|
|
|
func Ci(ctx context.Context) error {
|
|
log.Println("CI")
|
|
|
|
return exec.Command("shuttle", "--skip-pull", "run", "build").Run()
|
|
}
|