Add missing statement

This commit is contained in:
Manuel Thalmann 2023-07-16 02:01:31 +02:00
parent 6419257cd8
commit 54542203e5

View file

@ -5,6 +5,7 @@ function Install-SoftwarePackage([Context] $context, [string] $location, [string
[string]$tempDir = $null;
if (-not ($local.IsPresent)) {
$tempDir = $context.GetTempDirectory();
Write-Information "Determining the file name of $location";
$fileName = ([uri]$location).Segments[-1];
Write-Information "$fileName";