diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-18 16:18:34 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-18 16:18:34 -0800 |
commit | 746ebe782d51ff6114b6873b021fdc3ebb5bbe06 (patch) | |
tree | 843ebf05ae45d01b8926ebb8de3e4c2f8b43eddc /cmd/ponzu/options.go | |
parent | fa7b9089f8ccba22b8a17bda58437eda459217b8 (diff) |
update empty slice to nil
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 e0fb8fc..389c667 100644 --- a/cmd/ponzu/options.go +++ b/cmd/ponzu/options.go @@ -255,7 +255,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{}) + err = copyFilesWarnConflicts(src, dst, nil) if err != nil { return err } |