Skip to content

Commit

Permalink
VERSION 0.2.1
Browse files Browse the repository at this point in the history
1. 修复一个 ldap check 没有换行的 bug
  • Loading branch information
freedomkk-qfeng committed Feb 17, 2020
1 parent 7da8c0c commit 50b1c4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var checkCmd = &cobra.Command{
Run: func(cmd *cobra.Command, args []string) {
_, err := models.Health_Check(g.Config().Ldap)
if err != nil {
fmt.Fprintf(os.Stderr, "Failed: %v", err)
fmt.Fprintf(os.Stderr, "Failed: %v\n", err)
return
}
fmt.Println("Successed")
Expand Down
2 changes: 1 addition & 1 deletion g/const.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package g

const (
VERSION = "0.2"
VERSION = "0.2.1"
USERS_CSV = "users.csv"
FAILED_CSV = "failed.csv"
)

0 comments on commit 50b1c4b

Please sign in to comment.