Fix reclient download condition.

The operator predence wasn't what I thought it was and reclient gets
downloaded on windows-arm64 where no package is available.

Change-Id: I89b474f1107f2445d5e76a2912cee8bcacf4a667
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/345520
Reviewed-by: Martin Kustermann <kustermann@google.com>
This commit is contained in:
Jonas Termansen 2024-01-10 14:36:06 +00:00
parent ffdb0a2e19
commit a3a6c8ff91

2
DEPS
View file

@ -581,7 +581,7 @@ Var("dart_root") + "/third_party/pkg/tar":
}
],
# Download reclient only on the platforms where it has packages available.
'condition': '(host_os == "linux" or host_os == "win" or host_os == "mac" ) and host_cpu == "x64" or host_os == "mac" and host_cpu == "arm64"',
'condition': '((host_os == "linux" or host_os == "win" or host_os == "mac" ) and host_cpu == "x64") or (host_os == "mac" and host_cpu == "arm64")',
'dep_type': 'cipd',
},