Skip to content

Commit 9a3dba6

Browse files
committed
Version 0.6.41
1 parent 9b0c381 commit 9a3dba6

File tree

8 files changed

+11
-9
lines changed

8 files changed

+11
-9
lines changed

cli-build/build.gradle.kts

+6-6
Original file line numberDiff line numberDiff line change
@@ -102,16 +102,16 @@ kotlin {
102102
}
103103
}
104104

105-
tasks.register<Exec>("zipDsymsArm") {
106-
commandLine("./zip-dsyms-arm.sh")
105+
tasks.register<Exec>("mvDsymsArm") {
106+
commandLine("./mv-dsyms-arm.sh")
107107
group = "custom"
108108
description = "Uploads Sentry dSYMsn for arm/m1"
109109
}
110110

111-
tasks.register<Exec>("zipDsymsIntel") {
112-
commandLine("./zip-dsyms-intel.sh")
111+
tasks.register<Exec>("mvDsymsIntel") {
112+
commandLine("./mv-dsyms-intel.sh")
113113
group = "custom"
114114
description = "Uploads Sentry dSYMsn for intel"
115115
}
116-
tasks.named("linkReleaseExecutableMacosArm64") { finalizedBy("zipDsymsArm") }
117-
tasks.named("linkReleaseExecutableMacosX64") { finalizedBy("zipDsymsIntel") }
116+
tasks.named("linkReleaseExecutableMacosArm64") { finalizedBy("mvDsymsArm") }
117+
tasks.named("linkReleaseExecutableMacosX64") { finalizedBy("mvDsymsIntel") }

cli-build/mv-dsyms-arm.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
mkdir /tmp/arm
2+
mv build/bin/macosArm64/releaseExecutable/cli-build.kexe.dSYM /tmp/arm

cli-build/mv-dsyms-intel.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
mkdir /tmp/intel
2+
mv build/bin/macosX64/releaseExecutable/cli-build.kexe.dSYM /tmp/intel

cli-build/zip-dsyms-arm.sh

-1
This file was deleted.

cli-build/zip-dsyms-intel.sh

-1
This file was deleted.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
kotlin.code.style=official
2-
VERSION_NAME=0.6.40
2+
VERSION_NAME=0.6.41
33
GROUP=co.touchlab.gitportal

0 commit comments

Comments
 (0)