Fix non-functioning profile script

This commit is contained in:
Manuel Thalmann 2024-08-28 04:39:15 +02:00
parent 000fb9237e
commit eb0ca51bb5

View file

@ -75,9 +75,11 @@ $null = New-Module {
Push-Location ~; Push-Location ~;
$profiles = $profiles | $profiles = @(
ForEach-Object { [System.IO.Path]::GetRelativePath((Get-Location), $_) } | $profiles |
ForEach-Object { "$HomeDir/$_" }; ForEach-Object { [System.IO.Path]::GetRelativePath((Get-Location), $_) } |
ForEach-Object { "$HomeDir/$_" }
);
Pop-Location; Pop-Location;
} }