PortValhalla/scripts/Common/Software/zoxide/install.ps1

13 lines
307 B
PowerShell

#!/bin/pwsh
. "$PSScriptRoot/../PowerShell/Profile.ps1";
Add-PowerShellProfileStatement `
-System `
-Category "zoxide" `
-Script $(
@(
"# zoxide",
$(Get-ScriptInitializer "zoxide init powershell | Out-String")
) -join [System.Environment]::NewLine
)