From 1ab068d44dfc157a213f6bfc9f01cf96c0c981d2 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 6 Aug 2015 12:55:50 +0100 Subject: [PATCH] Add dokku command --- shell/_main.sh | 1 + shell/dokku.sh | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 shell/dokku.sh diff --git a/shell/_main.sh b/shell/_main.sh index 5ad2272..d54a0bf 100644 --- a/shell/_main.sh +++ b/shell/_main.sh @@ -34,6 +34,7 @@ source "$DOTSHELL/nodejs.sh" source "$DOTSHELL/python.sh" source "$DOTSHELL/ruby.sh" source "$DOTSHELL/golang.sh" +source "$DOTSHELL/dokku.sh" source "$DOTSHELL/sbcl.sh" source "$DOTSHELL/amdsdk.sh" diff --git a/shell/dokku.sh b/shell/dokku.sh new file mode 100644 index 0000000..c6daa25 --- /dev/null +++ b/shell/dokku.sh @@ -0,0 +1,8 @@ +# +# dokku +# + +if [ -e "$HOME/.dokku/contrib/dokku_client.sh" ]; then + alias dokku="$HOME/.dokku/contrib/dokku_client.sh" + alias do="dokku" +fi