Resolve dependency loop

This commit is contained in:
Manuel Thalmann 2024-08-07 21:54:58 +02:00
parent 8420cd4299
commit e596202af3

View file

@ -1,7 +1,7 @@
#!/bin/bash
. "$PSScriptRoot/Context.ps1";
function Install-SoftwarePackage([Context] $context, [string] $location, [string[]] $argumentList = @("/S"), [switch]$local) {
function Install-SoftwarePackage($context, [string] $location, [string[]] $argumentList = @("/S"), [switch]$local) {
. "$PSScriptRoot/Context.ps1";
[Context]$context = $context;
[string]$filePath = "";
[string]$tempDir = $null;