aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/addPoshVcpkgToPowershellProfile.ps15
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/addPoshVcpkgToPowershellProfile.ps1 b/scripts/addPoshVcpkgToPowershellProfile.ps1
index 92a7573e4..7a12e7d34 100644
--- a/scripts/addPoshVcpkgToPowershellProfile.ps1
+++ b/scripts/addPoshVcpkgToPowershellProfile.ps1
@@ -5,11 +5,12 @@ function findExistingImportModuleDirectives([Parameter(Mandatory=$true)][string]
{
if (!(Test-Path $path))
{
- return $false
+ return
}
$fileContents = Get-Content $path
- return $fileContents -match 'Import-Module.+?(?=posh-vcpkg)'
+ $fileContents -match 'Import-Module.+?(?=posh-vcpkg)'
+ return
}
$scriptsDir = split-path -parent $MyInvocation.MyCommand.Definition