mirror of https://github.com/markbates/pkger.git
version bump: v0.1.0
This commit is contained in:
parent
1adf32e2e7
commit
680e5e6a09
|
@ -1,4 +1,4 @@
|
|||
package main
|
||||
package cmds
|
||||
|
||||
import "flag"
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package main
|
||||
package cmds
|
||||
|
||||
import (
|
||||
"encoding/json"
|
|
@ -1,4 +1,4 @@
|
|||
package main
|
||||
package cmds
|
||||
|
||||
import (
|
||||
"flag"
|
||||
|
@ -141,6 +141,7 @@ func Package(out string, paths []here.Path) error {
|
|||
fmt.Fprintf(f, "\nvar _ = pkger.Apply(mem.UnmarshalEmbed([]byte(`")
|
||||
|
||||
if err := stuffing.Stuff(f, c, paths); err != nil {
|
||||
os.RemoveAll(out)
|
||||
return err
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package main
|
||||
package cmds
|
||||
|
||||
import (
|
||||
"encoding/json"
|
|
@ -1,4 +1,4 @@
|
|||
package main
|
||||
package cmds
|
||||
|
||||
import (
|
||||
"flag"
|
|
@ -1,4 +1,4 @@
|
|||
package main
|
||||
package cmds
|
||||
|
||||
import (
|
||||
"flag"
|
|
@ -1,4 +1,4 @@
|
|||
package main
|
||||
package cmds
|
||||
|
||||
import (
|
||||
"flag"
|
|
@ -1,4 +1,4 @@
|
|||
package main
|
||||
package cmds
|
||||
|
||||
import (
|
||||
"fmt"
|
|
@ -4,6 +4,8 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
"os/exec"
|
||||
|
||||
"github.com/markbates/pkger/cmd/pkger/cmds"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
@ -23,7 +25,7 @@ func main() {
|
|||
}
|
||||
|
||||
func run() error {
|
||||
root, err := New()
|
||||
root, err := cmds.New()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue