From bb8b842747d4cfcdf4e0dc3d63d5831c549f168e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 5 Jan 2018 07:47:07 -0500 Subject: [PATCH] improvements to cli Signed-off-by: Kenneth Reitz --- cmd/herald-cli/main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/herald-cli/main.go b/cmd/herald-cli/main.go index d1a7a91..7c1e78e 100644 --- a/cmd/herald-cli/main.go +++ b/cmd/herald-cli/main.go @@ -105,7 +105,9 @@ func main() { fmt.Printf("Info: %s:%s:%s\n", bp, target.Name, targetString) // Get Version from given version information. - fmt.Printf(" Valid: %t\n ", version.IsValid) + fmt.Printf(" Valid: %t\n", version.IsValid) + fmt.Printf(" Published: %t\n", version.IsPublished) + // python := herald.NewBuildpack("python") return nil }