fix service names in cleanup script

This commit is contained in:
Tim Hess 2019-01-24 14:45:41 -06:00
Родитель 5ad5eb831c
Коммит c94d5f8c6b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -24,6 +24,6 @@ foreach ($_ in "MobileMarketingApiGw MobileShoppingApiGw WebMarketingApiGw WebSh
# backing services # backing services
foreach ($_ in "eShopConfig eShopRegistry eShopDocDb eShopMySQL eShopMQ eShopCache".Split('')) { foreach ($_ in "eShopConfig eShopRegistry eShopDocDb eShopMySQL eShopMQ eShopCache".Split('')) {
$commandArgs = "delete-service eshop.$_ -f" $commandArgs = "delete-service $_ -f"
Start-Process -FilePath "cf.exe" -ArgumentList $commandArgs Start-Process -FilePath "cf.exe" -ArgumentList $commandArgs
} }