Skip to content

Commit

Permalink
Fixed error in 7z script for building the zip file, zip re-uploaded t…
Browse files Browse the repository at this point in the history
…o 1.7.2
  • Loading branch information
rogerfar committed Apr 14, 2021
1 parent 3037179 commit 9c236bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet-publish.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..
Expand Down

0 comments on commit 9c236bb

Please sign in to comment.