mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 00:34:42 +01:00
17 lines
207 B
Go
17 lines
207 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) // nolint: gas
|
|
os.Exit(1)
|
|
}
|
|
}
|