1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 17:34:41 +01:00
gojekyll/main.go

17 lines
215 B
Go

package main
import (
"fmt"
"os"
"github.com/danog/gojekyll/commands"
)
func main() {
err := commands.ParseAndRun(os.Args[1:])
if err != nil {
fmt.Fprintln(os.Stderr, err) // nolint: gas
os.Exit(1)
}
}