Add a tab before package name for output in remove_shitty_modern_app()

This commit is contained in:
Yorick Barbanneau 2018-02-23 12:22:52 +01:00
parent 541b81bed9
commit daad1239ba

View file

@ -141,7 +141,7 @@ function disable_shitty_feature {
# $pkg : Package (Object)
function remove_shitty_modern_app {
param($pkg)
Write-Host -NoNewLine "$($pkg.Name) :"
Write-Host -NoNewLine "`t$($pkg.Name) :"
try {
$pkg | Remove-AppxPackage
}