mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
16 lines
316 B
Bash
Executable File
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
|