Make zoxide installation cross platform

This commit is contained in:
Manuel Thalmann 2024-09-19 22:24:36 +02:00
parent 00076e2abb
commit b31d25ea3a
3 changed files with 42 additions and 18 deletions
scripts/Windows/Software/zoxide

View file

@ -3,21 +3,26 @@ param(
[hashtable] $Arguments
)
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
. "$PSScriptRoot/../../../Common/Software/PowerShell/Profile.ps1";
& {
param(
[hashtable] $Parameters
)
Start-SoftwareInstaller @PSBoundParameters `
-Installer {
Install-ChocoPackage zoxide;
Install-WingetPackage junegunn.fzf;
} `
-Configurator {
Add-PowerShellProfileStatement `
-System `
-Category "zoxide" `
-Script (
@(
"# zoxide",
(Get-ScriptInitializer "zoxide init powershell | Out-String")
) -join [System.Environment]::NewLine);
};
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
. "$PSScriptRoot/../../../Common/Software/PowerShell/Profile.ps1";
. "$PSScriptRoot/../../../Common/Types/InstallerAction.ps1";
$base = "$PSScriptRoot/../../../Common/Software/zoxide/Main.ps1";
Start-SoftwareInstaller @PSBoundParameters `
-Installer {
Install-ChocoPackage zoxide;
Install-WingetPackage junegunn.fzf;
} `
-Configurator {
param(
$Arguments
)
& $base ([InstallerAction]::Configure) @PSBoundParameters;
};
} $PSBoundParameters;