mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
32 lines
809 B
Bash
Executable File
32 lines
809 B
Bash
Executable File
#!/usr/bin/env bash
|
|
[[ " help tar:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
case "$1" in
|
|
help | tar:help)
|
|
help_content_func () {
|
|
declare desc="return tar plugin help content"
|
|
cat<<help_content
|
|
tar:in <app>, Reads an tarball containing the app from stdin
|
|
tar:from <app> <url>, Loads an app tarball from url
|
|
help_content
|
|
}
|
|
|
|
if [[ $1 = "tar:help" ]] ; then
|
|
echo -e 'Usage: dokku tar[:COMMAND]'
|
|
echo ''
|
|
echo 'An alternative to using git, apps are loaded via tarballs instead.'
|
|
echo ''
|
|
echo 'Additional commands:'
|
|
help_content_func | sort | column -c2 -t -s,
|
|
else
|
|
help_content_func
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
;;
|
|
|
|
esac
|