Skip to content

Commit

Permalink
FIX: log: newline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorbenei committed Jan 25, 2016
1 parent d86d4d1 commit 5744012
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.9.3

- log: newline fix

## 0.9.2

- `--allow-export` flag : automatically allow exporting of discovered files.
Expand Down
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""
Expand Down
2 changes: 1 addition & 1 deletion cli/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 5744012

Please sign in to comment.