mirror of
https://github.com/strongdm/comply
synced 2024-11-05 07:25:26 +00:00
24 lines
507 B
Go
24 lines
507 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"github.com/strongdm/comply/internal/render"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var buildCommand = cli.Command{
|
|
Name: "build",
|
|
ShortName: "b",
|
|
Usage: "generate a static website summarizing the compliance program",
|
|
Action: buildAction,
|
|
Before: beforeAll(pandocMustExist, cleanContainers),
|
|
}
|
|
|
|
func buildAction(c *cli.Context) error {
|
|
err := render.Build("output", false)
|
|
if err != nil {
|
|
return errors.Wrap(err, "build failed")
|
|
}
|
|
return nil
|
|
}
|