diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-12-12 15:50:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-12 15:50:03 +0100 |
commit | 3967812bd0de40330dfbb9e1a7d14d4073cc1b10 (patch) | |
tree | dbd5df2a66bdd50df40fd773e1d1ec284483ecfe /examples/common.go | |
parent | 6f701ecc18909959364b708b8efddd03cf4e809c (diff) | |
download | go-git-3967812bd0de40330dfbb9e1a7d14d4073cc1b10.tar.gz |
examples: review, testing and documentation (#176)
* examples reviews, testing and documentation
* including the execution on travis, and fix readme
* fix example link
* including the execution on travis
Diffstat (limited to 'examples/common.go')
-rw-r--r-- | examples/common.go | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/common.go b/examples/common.go new file mode 100644 index 0000000..971b0f6 --- /dev/null +++ b/examples/common.go @@ -0,0 +1,32 @@ +package examples + +import ( + "os" + "strings" + + "github.com/fatih/color" +) + +func CheckArgs(arg ...string) { + if len(os.Args) < len(arg)+1 { + Warning("Usage: %s %s", os.Args[0], strings.Join(arg, " ")) + os.Exit(1) + } +} + +func CheckIfError(err error) { + if err == nil { + return + } + + color.Red("error: %s", err) + os.Exit(1) +} + +func Info(format string, args ...interface{}) { + color.Blue(format, args...) +} + +func Warning(format string, args ...interface{}) { + color.Cyan(format, args...) +} |