From 36e7bb53fec5886d48dddcdb2437d1eb5d2e37a8 Mon Sep 17 00:00:00 2001 From: Jelte Fennema Date: Mon, 24 Jul 2017 23:03:50 +0200 Subject: [PATCH] Print error that's on travis --- cmd/ensure.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/ensure.go b/cmd/ensure.go index bc1b976..6f7217b 100644 --- a/cmd/ensure.go +++ b/cmd/ensure.go @@ -119,6 +119,8 @@ This command requires that dep is installed in $PATH. `, err = os.Rename("vendor", srcPath) if err != nil { + err := errors.Wrap(err, "Couldn't move the the sources of the active workspace to vendor") + fmt.Printf("%v\n", err) return errors.Wrap(err, "Couldn't move the vendor directory to the active workspace") }