Fixed error in 7z script for building the zip file, zip re-uploaded to 1.7.2

This commit is contained in:
Roger Far 2021-04-14 16:30:57 -06:00
parent 3037179a27
commit 9c236bbe67

View file

@ -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 ..