mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
14 lines
361 B
Bash
Executable File
14 lines
361 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
plugin_install_dependencies_cmd() {
|
|
local desc="calls dependencies plugin trigger via command line"
|
|
local cmd="plugin:install-dependencies"
|
|
if [[ $2 == "--core" ]]; then
|
|
export PLUGIN_PATH="$PLUGIN_CORE_PATH"
|
|
fi
|
|
plugn trigger dependencies
|
|
}
|
|
|
|
plugin_install_dependencies_cmd "$@"
|