Change indentation to tabs

This commit is contained in:
Bruno Sutic
2014-05-24 23:18:37 +02:00
parent c1304d1da0
commit 89ea56f553
4 changed files with 51 additions and 51 deletions

View File

@ -3,21 +3,21 @@
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
run_vagrant() {
vagrant up --provider=docker
vagrant up --provider=docker
}
stop_vagrant() {
vagrant destroy -f
vagrant destroy -f
}
run_tests() {
# actually this test file should be run inside vagrant
$CURRENT_DIR/tests/test_plugin_installation.sh
# actually this test file should be run inside vagrant
$CURRENT_DIR/tests/test_plugin_installation.sh
}
main() {
run_vagrant
run_tests
stop_vagrant
run_vagrant
run_tests
stop_vagrant
}
main