Skip to content

Commit bc8e3ed

Browse files
committed
Fix zstd resolution
1 parent 527a707 commit bc8e3ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

distribution/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ configure(subprojects.findAll { ['archives', 'packages'].contains(it.name) }) {
357357
into('platform') {
358358
from(configurations.libsNative)
359359
if (os != null) {
360-
include (os + '-' + architecture + '/*')
360+
include (os + '-' + architecture.classifier + '/*')
361361
}
362362
}
363363
into('entitlement-agent') {

libs/native/libraries/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def extractLibs = tasks.register('extractLibs', Copy) {
6060
from configurations.libs
6161
// TODO: fix architecture in uploaded libs
6262
filesMatching("*-x86-64/*") {
63-
it.path = it.path.replace("x86-64", "x64")
63+
it.path = it.path.replace("x86-64", "amd64")
6464
}
6565
filesMatching("win32*/*") {
6666
it.path = it.path.replace("win32", "windows")

0 commit comments

Comments
 (0)