Skip to content

Commit

Permalink
Improved messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilio0404 committed Oct 11, 2023
1 parent b2cb8e5 commit 5d85ae3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install/uninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function Remove-FromPath {
$pathArr += "${path}"
}
elseif (!$path.Equals("")) {
Write-Verbose "Removing '${path}' from PATH"
Write-Verbose "Removing PATH entry '${path}'"
}
}
$updatedPath = ($pathArr -join ";") + ";"
Expand All @@ -87,7 +87,7 @@ function Remove-InstallationFolder {
param ([string]$directory)

if (Test-Path -Path $directory) {
Write-Verbose "Removing installations at '${directory}'"
Write-Verbose "Removing all installations at '${directory}'"
Remove-Item -Force -Recurse $directory
} else {
Write-Verbose "There were no installations found at '${directory}'"
Expand Down

0 comments on commit 5d85ae3

Please sign in to comment.