From 736cfea63d7e85ffa6acbfc74d4db05cbdc3bd9d Mon Sep 17 00:00:00 2001 From: Chris Kite Date: Wed, 24 Jan 2018 16:10:42 -0600 Subject: [PATCH] add cli app description --- install.sh | 2 +- main.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index efa143f..693e0de 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash set -e -release="0.0.6" +release="0.0.7" localBin="/usr/local/bin/dope" os=$(uname -s) arch=$(uname -m) diff --git a/main.go b/main.go index c850aa5..92919fb 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ import ( "os/exec" ) -const Release = "0.0.6" +const Release = "0.0.7" var log = logging.MustGetLogger("dope") @@ -41,6 +41,7 @@ func setupLogging() { func main() { app := cli.NewApp() app.Name = "dope" + app.Usage = "Simple docker package management" app.Version = Release setupLogging()