From f2c115e89fd972154ba7bab494987a88f539e962 Mon Sep 17 00:00:00 2001 From: Uri Goldstein Date: Wed, 25 May 2016 18:02:07 +0300 Subject: [PATCH] Removed call to Write-ChocolateySuccess from chocolatey PS scripts. --- src/GitVersionExe/NugetAssets/chocolateyInstall.ps1 | 3 +-- src/GitVersionExe/NugetAssets/chocolateyUninstall.ps1 | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/GitVersionExe/NugetAssets/chocolateyInstall.ps1 b/src/GitVersionExe/NugetAssets/chocolateyInstall.ps1 index 6b3caeda69..6d0d8b6d79 100644 --- a/src/GitVersionExe/NugetAssets/chocolateyInstall.ps1 +++ b/src/GitVersionExe/NugetAssets/chocolateyInstall.ps1 @@ -1,2 +1 @@ -Generate-BinFile "gfv" "$packageFolder\Tools\GitVersion.exe" -Write-ChocolateySuccess "GitVersion" \ No newline at end of file +Generate-BinFile "gfv" "$packageFolder\Tools\GitVersion.exe" \ No newline at end of file diff --git a/src/GitVersionExe/NugetAssets/chocolateyUninstall.ps1 b/src/GitVersionExe/NugetAssets/chocolateyUninstall.ps1 index eaf4578b08..06198afa27 100644 --- a/src/GitVersionExe/NugetAssets/chocolateyUninstall.ps1 +++ b/src/GitVersionExe/NugetAssets/chocolateyUninstall.ps1 @@ -1,3 +1,2 @@ Remove-BinFile "gfv" "$packageFolder\Tools\GitVersion.exe" -Remove-BinFile "GitVersion" "$packageFolder\Tools\GitVersion.exe" -Write-ChocolateySuccess "GitVersion" \ No newline at end of file +Remove-BinFile "GitVersion" "$packageFolder\Tools\GitVersion.exe" \ No newline at end of file