1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 21:24:41 +01:00

Move package commands -> cmd

This commit is contained in:
Oliver Steele 2017-07-13 19:02:30 -04:00
parent e5e96cef84
commit 6cbc6f637a
7 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
package commands
package cmd
import (
"fmt"

View File

@ -1,4 +1,4 @@
package commands
package cmd
import (
"strconv"

View File

@ -1,4 +1,4 @@
package commands
package cmd
import (
"fmt"

View File

@ -1,4 +1,4 @@
package commands
package cmd
import (
"fmt"

View File

@ -1,4 +1,4 @@
package commands
package cmd
import (
"testing"

View File

@ -1,4 +1,4 @@
package commands
package cmd
// Version is the build version.
//

View File

@ -4,11 +4,11 @@ import (
"fmt"
"os"
"github.com/osteele/gojekyll/commands"
"github.com/osteele/gojekyll/cmd"
)
func main() {
err := commands.ParseAndRun(os.Args[1:])
err := cmd.ParseAndRun(os.Args[1:])
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)