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

13 lines
310 B
PowerShell
Raw Normal View History

2024-07-16 12:28:32 +00:00
#!/bin/pwsh
. "$PSScriptRoot/../powershell/profile.ps1";
Add-PowerShellProfileStatement `
-System `
-Category "zoxide" `
-Statement $(
@(
"# zoxide",
$(Get-ScriptInitializer "zoxide init powershell | Out-String")
) -join [System.Environment]::NewLine
)