mirror of https://github.com/markbates/pkger.git
version bump: v0.3.1
This commit is contained in:
parent
a09d2070cd
commit
3c88088905
|
@ -5,6 +5,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"sort"
|
"sort"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/markbates/pkger"
|
"github.com/markbates/pkger"
|
||||||
"github.com/markbates/pkger/parser"
|
"github.com/markbates/pkger/parser"
|
||||||
|
@ -82,7 +83,7 @@ func (e *packCmd) Route(args []string) error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return e.Exec(args)
|
return fmt.Errorf("unknown arguments: %s", strings.Join(args, " "))
|
||||||
}
|
}
|
||||||
|
|
||||||
func New() (*packCmd, error) {
|
func New() (*packCmd, error) {
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
package cmds
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
|
|
||||||
"github.com/markbates/pkger"
|
|
||||||
)
|
|
||||||
|
|
||||||
func walk(args []string) error {
|
|
||||||
err := pkger.Walk("/", func(path string, info os.FileInfo, err error) error {
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
fmt.Println(path)
|
|
||||||
return nil
|
|
||||||
})
|
|
||||||
return err
|
|
||||||
}
|
|
|
@ -1,4 +1,4 @@
|
||||||
package pkger
|
package pkger
|
||||||
|
|
||||||
// Version of pkger
|
// Version of pkger
|
||||||
const Version = "v0.3.0"
|
const Version = "v0.3.1"
|
||||||
|
|
Loading…
Reference in New Issue