6 lines
174 B
PowerShell
6 lines
174 B
PowerShell
|
# Chocolatey profile
|
||
|
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
|
||
|
if (Test-Path($ChocolateyProfile)) {
|
||
|
Import-Module "$ChocolateyProfile"
|
||
|
}
|