summaryrefslogtreecommitdiff
path: root/cmd/ponzu/options.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-12-17 06:05:07 -0800
committerSteve Manuel <nilslice@gmail.com>2016-12-17 06:05:07 -0800
commitd4b94e4b37bb4b28dae2a91bf4a9872e0a801c1a (patch)
tree7b00da4e19fd39293fd2c5dfd4e0e5818e6bcfed /cmd/ponzu/options.go
parentf680588370706affb2ef98ba2a93d93fb5284683 (diff)
moving reference into content package and testing API based approach
Diffstat (limited to 'cmd/ponzu/options.go')
-rw-r--r--cmd/ponzu/options.go2
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
}