From 398ea18e2efcc64c18726387fa5d1667c3aef52a Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Sat, 17 Dec 2016 01:15:16 -0800 Subject: add debug for build step --- cmd/ponzu/options.go | 8 ++++---- 1 file 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, }) -- cgit v1.2.3