/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packaging/linux/smoketest/clear_setup.bash
18 строк
371 B
heronhaye
misc smoketest fixes (#20667)
29 окт 2019, 19:18
Не верифицирован
29 окт 2019, 19:18
b9429a1
Код
Авторство
О чём код?
#!/usr/bin/bash set -euox pipefail echo "Starting clearing linux smoketests" parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P ) cd "$parent_path" for platform in */; do case $platform in vagrantcommon/) continue;; esac ( cd "$platform" vagrant destroy -f ) done echo "Finished clearing linux smoketests successfully"