Files
dokku/plugins/tar/commands
2017-03-12 21:28:45 -06:00

16 lines
316 B
Bash
Executable File

#!/usr/bin/env bash
[[ " help tar:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
source "$PLUGIN_AVAILABLE_PATH/tar/internal-functions"
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
case "$1" in
help | tar:help)
tar_help_cmd "$1"
;;
*)
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
;;
esac