From 4497d07d27af2bc2827820d3fac8c684921370ad Mon Sep 17 00:00:00 2001 From: Fedor Isakov Date: Mon, 3 Nov 2025 12:33:23 +0100 Subject: [PATCH] Fix path in macOs MPS dist --- dependencies.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies.gradle b/dependencies.gradle index 83eb8be5..e921ea57 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -70,7 +70,7 @@ task installMps_macos(type: Copy) { // Gradle woodoo for unzipping an archive eachFile { FileCopyDetails fcp -> // copy the contents of the directory named "MPS ${mpsRelease}" - if (fcp.relativePath.pathString.startsWith("MPS ${mpsRelease}.app/Contents/")) { + if (fcp.relativePath.pathString.startsWith("MPS.app/Contents/")) { // remap the file to the root def segments = fcp.relativePath.segments def pathsegments = segments[2..-1] as String[]