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

17 lines
487 B
PowerShell
Raw Normal View History

2024-10-13 13:35:24 +00:00
. "$PSScriptRoot/../powershell/Profile.ps1";
. "$PSScriptRoot/../../Scripts/Software.ps1";
2024-09-30 03:00:20 +00:00
Start-SoftwareInstaller @args `
-Configurator {
param([string] $Name)
Add-PowerShellProfileStatement `
-System `
-Category "$Name" `
-Script (
@(
"# $Name",
(Get-ScriptInitializer "zoxide init powershell | Out-String")
) -join [System.Environment]::NewLine);
};