From 205fb1887e3e4354898e36e9e449f1d2ea3ee4f8 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Thu, 9 Jul 2020 14:27:06 +0300 Subject: [PATCH] Update TestsHelpers.ps1 --- images/win/scripts/ImageHelpers/TestsHelpers.ps1 | 8 -------- 1 file changed, 8 deletions(-) diff --git a/images/win/scripts/ImageHelpers/TestsHelpers.ps1 b/images/win/scripts/ImageHelpers/TestsHelpers.ps1 index ee962129..5cc69dec 100644 --- a/images/win/scripts/ImageHelpers/TestsHelpers.ps1 +++ b/images/win/scripts/ImageHelpers/TestsHelpers.ps1 @@ -12,14 +12,6 @@ function Get-CommandResult { } } -# Gets path to the tool, analogue of 'which tool' -function Get-WhichTool { - Param ( - [Parameter(Mandatory)][string] $Tool - ) - return (Get-Command $Tool).Path -} - # Gets value of environment variable by the name function Get-EnvironmentVariable($variable) { return [System.Environment]::GetEnvironmentVariable($variable)