blob: 4ee162256f4be4e55622da6440e49ef6cd736189 [file] [log] [blame]
Tom Barron29ef8522019-03-29 11:53:56 -04001# Directory where this plugin.sh file is
2MANILA_TEMPEST_PLUGIN_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
3
4# install_manila_tempest_plugin
5function install_manila_tempest_plugin {
6 setup_dev_lib "manila-tempest-plugin"
7}
8
9if [[ "$1" == "stack" ]]; then
10 case "$2" in
11 install)
12 echo_summary "Installing manila-tempest-plugin"
13 install_manila_tempest_plugin
14 ;;
15 esac
16fi