run-cli -> run, fix help formatting

This commit is contained in:
Alexander
2013-08-21 00:02:52 +02:00
parent 2563581f49
commit 3e9e6127a7
3 changed files with 8 additions and 8 deletions

6
dokku
View File

@@ -90,9 +90,9 @@ case "$1" in
help)
cat<<EOF | pluginhook commands help | sort
help Print the list of commands
plugins Print active plugins
plugins-install Install active plugins
help Print the list of commands
plugins Print active plugins
plugins-install Install active plugins
EOF
;;

View File

@@ -5,7 +5,7 @@ set -e; case "$1" in
docker logs $CONTAINER | tail -n 100
;;
run-cli)
run)
if [[ -z $2 ]]; then
echo "Please specify an app to run the command on"
exit 1
@@ -16,13 +16,13 @@ set -e; case "$1" in
exit 1
fi
shift 2
docker run $IMAGE /run-cli "$@"
docker run $IMAGE /exec "$@"
;;
help)
cat && cat<<EOF
logs <app> Show the last logs for an application
run-cli <app> <cmd> Run a command in the environment of an application
logs <app> Show the last logs for an application
run <app> <cmd> Run a command in the environment of an application
EOF
;;

View File

@@ -10,7 +10,7 @@ set -e; case "$1" in
;;
help) cat && cat<<EOF
url <app> Show the URL for an application
url <app> Show the URL for an application
EOF
;;