1
0
mirror of https://github.com/danog/gojekyll.git synced 2025-01-22 21:51:37 +01:00
gojekyll/main.go
2017-07-13 19:02:30 -04:00

17 lines
192 B
Go

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