1
0
mirror of https://github.com/danog/gojekyll.git synced 2025-01-23 01:11:22 +01:00
gojekyll/main.go

17 lines
192 B
Go
Raw Normal View History

2017-07-12 20:40:05 -04:00
package main
import (
"fmt"
"os"
2017-07-13 19:02:30 -04:00
"github.com/osteele/gojekyll/cmd"
2017-07-12 20:40:05 -04:00
)
func main() {
2017-07-13 19:02:30 -04:00
err := cmd.ParseAndRun(os.Args[1:])
2017-07-12 20:40:05 -04:00
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}