Skip to content

Commit

Permalink
add cli app description
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskite committed Jan 24, 2018
1 parent f1a97ed commit 736cfea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"os/exec"
)

const Release = "0.0.6"
const Release = "0.0.7"

var log = logging.MustGetLogger("dope")

Expand All @@ -41,6 +41,7 @@ func setupLogging() {
func main() {
app := cli.NewApp()
app.Name = "dope"
app.Usage = "Simple docker package management"
app.Version = Release

setupLogging()
Expand Down

0 comments on commit 736cfea

Please sign in to comment.