Allow installing modules native only

This commit is contained in:
Manuel Thalmann 2024-08-08 02:28:23 +02:00
parent 0d1dbda873
commit 889f969045

View file

@ -11,12 +11,14 @@ $null = New-Module {
#> #>
function Get-ModuleInstallerComponents { function Get-ModuleInstallerComponents {
param( param(
[string] $Name [string] $Name,
[switch] $NativeOnly
) )
@{ @{
arguments = @{ arguments = @{
name = $Name; name = $Name;
nativeOnly = $NativeOnly;
}; };
installer = { installer = {
param( param(
@ -26,7 +28,10 @@ $null = New-Module {
$env:PENDING_MODULE_NAME = $Arguments.Name; $env:PENDING_MODULE_NAME = $Arguments.Name;
$installAction = { Install-Module -Scope AllUsers -Force $env:PENDING_MODULE_NAME @args }; $installAction = { Install-Module -Scope AllUsers -Force $env:PENDING_MODULE_NAME @args };
& $installAction -AcceptLicense;
if (-not $Arguments.NativeOnly) {
& $installAction -AcceptLicense;
}
if (Test-Command powershell) { if (Test-Command powershell) {
powershell -c ($installAction.ToString()); powershell -c ($installAction.ToString());