From 5744012252149e245c56328147e5cc92f4fdf9f9 Mon Sep 17 00:00:00 2001 From: Viktor Benei Date: Mon, 25 Jan 2016 13:18:01 +0100 Subject: [PATCH] FIX: log: newline fix --- CHANGELOG.md | 4 ++++ cli/cli.go | 2 +- cli/scan.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80be9a18..e947e8f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.9.3 + +- log: newline fix + ## 0.9.2 - `--allow-export` flag : automatically allow exporting of discovered files. diff --git a/cli/cli.go b/cli/cli.go index b00e6ae6..1d7d1a1e 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -34,7 +34,7 @@ func Run() { app := cli.NewApp() app.Name = path.Base(os.Args[0]) app.Usage = "codesigndoc" - app.Version = "0.9.2" + app.Version = "0.9.3" app.Author = "" app.Email = "" diff --git a/cli/scan.go b/cli/scan.go index 6cbc31ed..b5e43f5e 100644 --- a/cli/scan.go +++ b/cli/scan.go @@ -187,7 +187,7 @@ func scan(c *cli.Context) { } fmt.Println() - fmt.Printf(colorstring.Green("Exports finished")+" you can find the exported files at: %s", absExportOutputDirPath) + fmt.Printf(colorstring.Green("Exports finished")+" you can find the exported files at: %s\n", absExportOutputDirPath) if err := cmdex.RunCommand("open", absExportOutputDirPath); err != nil { log.Errorf("Failed to open the export directory in Finder: %s", absExportOutputDirPath) }