diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-17 01:15:16 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-17 01:15:16 -0800 |
commit | 398ea18e2efcc64c18726387fa5d1667c3aef52a (patch) | |
tree | 67fc7c45f7a38a8e45e63c2dd6a96e106e0a40d0 /cmd/ponzu/options.go | |
parent | f6f682c3f89166abd54db83655ff86c2d27df908 (diff) |
add debug for build step
Diffstat (limited to 'cmd/ponzu/options.go')
-rw-r--r-- | cmd/ponzu/options.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/ponzu/options.go b/cmd/ponzu/options.go index 12cb4b9..f8bf4e8 100644 --- a/cmd/ponzu/options.go +++ b/cmd/ponzu/options.go @@ -270,8 +270,8 @@ func buildPonzuServer(args []string) error { // copy all ./content files to internal vendor directory err = copyDirWithPlan(copyPlan{ - srcPath: filepath.Join(pwd, "content"), - dstPath: filepath.Join(pwd, "cmd", "ponzu", "vendor", "github.com", "bosssauce", "ponzu"), + srcPath: "content", + dstPath: filepath.Join("cmd", "ponzu", "vendor", "github.com", "bosssauce", "ponzu"), reservedFileNames: []string{"item.go", "types.go"}, ignoreRootDir: false, }) @@ -281,8 +281,8 @@ func buildPonzuServer(args []string) error { // copy all ./addons files & dirs to internal vendor directory err = copyDirWithPlan(copyPlan{ - srcPath: filepath.Join(pwd, "addons"), - dstPath: filepath.Join(pwd, "cmd", "ponzu", "vendor"), + srcPath: "addons", + dstPath: filepath.Join("cmd", "ponzu", "vendor"), reservedFileNames: []string{}, ignoreRootDir: true, }) |