diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-17 06:05:07 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-17 06:05:07 -0800 |
commit | d4b94e4b37bb4b28dae2a91bf4a9872e0a801c1a (patch) | |
tree | 7b00da4e19fd39293fd2c5dfd4e0e5818e6bcfed /cmd/ponzu/options.go | |
parent | f680588370706affb2ef98ba2a93d93fb5284683 (diff) |
moving reference into content package and testing API based approach
Diffstat (limited to 'cmd/ponzu/options.go')
-rw-r--r-- | cmd/ponzu/options.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ponzu/options.go b/cmd/ponzu/options.go index 8b62b1a..6384b47 100644 --- a/cmd/ponzu/options.go +++ b/cmd/ponzu/options.go @@ -248,7 +248,7 @@ func buildPonzuServer(args []string) error { // copy all ./content files to internal vendor directory src := "content" dst := filepath.Join("cmd", "ponzu", "vendor", "github.com", "bosssauce", "ponzu", "content") - err = copyFilesWarnConflicts(src, dst, []string{"item.go", "types.go"}) + err = copyFilesWarnConflicts(src, dst, []string{"item.go", "types.go", "references.go"}) if err != nil { return err } |