CI: Don't apply zip_exec on generic-netf

Latest Mono (as of 6.12) is unable to extract zip archives with extended attributes that we're applying here
This commit is contained in:
Archi
2021-09-05 20:49:14 +02:00
parent 91a0bce535
commit 0a1c2873bf

View File

@@ -295,7 +295,8 @@ jobs:
if (Test-Path "tools\zip_exec\zip_exec.exe" -PathType Leaf) {
$executableFiles = @()
if ($variant -like 'generic*') {
# We should cover generic-netf here as well, but latest Mono (as of 6.12) is unable to extract zip archives with extended attributes that we're applying here
if ($variant -eq 'generic') {
$executableFiles += 'ArchiSteamFarm.sh', 'ArchiSteamFarm-Service.sh'
} elseif (($variant -like 'linux*') -or ($variant -like 'osx*')) {
$executableFiles += 'ArchiSteamFarm', 'ArchiSteamFarm-Service.sh'