From 9c236bbe67ca32bd67fbe7f1d35fad0bedea407a Mon Sep 17 00:00:00 2001 From: Roger Far Date: Wed, 14 Apr 2021 16:30:57 -0600 Subject: [PATCH] Fixed error in 7z script for building the zip file, zip re-uploaded to 1.7.2 --- dotnet-publish.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet-publish.ps1 b/dotnet-publish.ps1 index 1dec7cf..3027fce 100644 --- a/dotnet-publish.ps1 +++ b/dotnet-publish.ps1 @@ -25,7 +25,7 @@ cd out $location = Get-Location [string]$Zip = "C:\Program Files\7-Zip\7z.exe" -[array]$arguments = "a", "-tzip", "-y", "$location/../RealDebridClient.zip", $location +[array]$arguments = "a", "-tzip", "-y", "$location/../RealDebridClient.zip", "." & $Zip $arguments cd ..