From 6ccd43dfa7bedbfe9323e13085a476cca5d616d5 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Sat, 19 May 2018 18:24:50 -0700 Subject: [PATCH] Rename ps1 file --- scripts/bootstrap.ps1 | 2 +- ...ellUtils-ClearEnvironment.ps1 => cleanEnvironmentHelper.ps1} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename scripts/{VcpkgPowershellUtils-ClearEnvironment.ps1 => cleanEnvironmentHelper.ps1} (100%) diff --git a/scripts/bootstrap.ps1 b/scripts/bootstrap.ps1 index 43cf96c567..c37ffd57fc 100644 --- a/scripts/bootstrap.ps1 +++ b/scripts/bootstrap.ps1 @@ -310,7 +310,7 @@ function vcpkgInvokeCommandClean() Write-Verbose "Clean-Executing: ${executable} ${arguments}" $scriptsDir = split-path -parent $script:MyInvocation.MyCommand.Definition - $cleanEnvScript = "$scriptsDir\VcpkgPowershellUtils-ClearEnvironment.ps1" + $cleanEnvScript = "$scriptsDir\cleanEnvironmentHelper.ps1" $tripleQuotes = "`"`"`"" $argumentsWithEscapedQuotes = $arguments -replace "`"", $tripleQuotes $command = ". $tripleQuotes$cleanEnvScript$tripleQuotes; & $tripleQuotes$executable$tripleQuotes $argumentsWithEscapedQuotes" diff --git a/scripts/VcpkgPowershellUtils-ClearEnvironment.ps1 b/scripts/cleanEnvironmentHelper.ps1 similarity index 100% rename from scripts/VcpkgPowershellUtils-ClearEnvironment.ps1 rename to scripts/cleanEnvironmentHelper.ps1