Translating 'amd64' to 'x86_64'. #62

This commit is contained in:
Rob Greene 2021-12-20 12:57:53 -06:00
parent a75083f29b
commit 3b84a9a885
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,9 @@ dependencies {
test {
String osName = System.getProperty('os.name').toLowerCase().split()[0]
String osArch = System.getProperty('os.arch').toLowerCase().split()[0]
if ("amd64".equals(osArch)) {
osArch = "x86_64"
}
String swtDependency
switch (osName) {
case 'windows':