Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
break packr cache
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Jan 31, 2020
1 parent 4cbac3d commit d22f2de
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 29 deletions.
6 changes: 3 additions & 3 deletions genny/resource/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func New(opts *Options) (*genny.Generator, error) {
}

if !opts.SkipTemplates {
core := packr.New("github.com/gobuffalo/buffalo/genny/resource/templates/core", "../resource/templates/core")
core := packr.New("github.com/gobuffalo/buffalo/@v0.15.4/genny/resource/templates/core", "../resource/templates/core")

if err := g.Box(core); err != nil {
return g, err
Expand All @@ -29,9 +29,9 @@ func New(opts *Options) (*genny.Generator, error) {

var abox packd.Box
if opts.SkipModel {
abox = packr.New("github.com/gobuffalo/buffalo/genny/resource/templates/standard", "../resource/templates/standard")
abox = packr.New("github.com/gobuffalo/buffalo/@v0.15.4/genny/resource/templates/standard", "../resource/templates/standard")
} else {
abox = packr.New("github.com/gobuffalo/buffalo/genny/resource/templates/use_model", "../resource/templates/use_model")
abox = packr.New("github.com/gobuffalo/buffalo/@v0.15.4/genny/resource/templates/use_model", "../resource/templates/use_model")
}

if err := g.Box(abox); err != nil {
Expand Down
50 changes: 25 additions & 25 deletions packrd/packed-packr.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runtime/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package runtime

// Version is the current version of the buffalo binary
var Version = "v0.15.3"
var Version = "v0.15.5"

0 comments on commit d22f2de

Please sign in to comment.