16 lines
591 B
PowerShell
16 lines
591 B
PowerShell
& {
|
|
. "$PSScriptRoot/../../Scripts/SoftwareManagement.ps1";
|
|
. "$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 @args `
|
|
-Installer {
|
|
Install-ChocoPackage zoxide;
|
|
Install-WingetPackage junegunn.fzf;
|
|
} `
|
|
-Configurator {
|
|
& $base ([InstallerAction]::Configure) @args;
|
|
};
|
|
} @args;
|