Files
dokku/plugins/shell/commands
2016-03-03 22:11:35 -08:00

17 lines
289 B
Bash
Executable File

#!/usr/bin/env bash
[[ " help shell:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
case "$1" in
help | shell:help)
cat<<EOF
shell, Spawn dokku shell
EOF
;;
*)
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
;;
esac