Skip to content

Commit 15c27b6

Browse files
committed
Release v1.3.5
1 parent 4ff62da commit 15c27b6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ fun ShadowJar.mergeJars(archiveFileName: String, projects: List<Project>) {
3737
"libs/$archiveFileName"
3838
)
3939
val outputDir = outputFile.parentFile
40-
?: throw IllegalStateException("Kurwa, nie mogę znaleźć katalogu wyjściowego")
40+
?: throw IllegalStateException("Cannot find output directory")
4141

4242
if (!outputDir.exists() && !outputDir.mkdirs()) {
43-
throw IllegalStateException("Nie udało się stworzyć katalogu: ${outputDir.absolutePath}")
43+
throw IllegalStateException("Failed to create directory: ${outputDir.absolutePath}")
4444
}
4545

4646
if (outputFile.exists() && !outputFile.delete()) {
47-
throw IllegalStateException("Nie można usunąć istniejącego pliku: ${outputFile.absolutePath}")
47+
throw IllegalStateException("Cannot delete existing file: ${outputFile.absolutePath}")
4848
}
4949

5050
if (!outputFile.createNewFile()) {
51-
throw IllegalStateException("Nie można utworzyć pliku wyjściowego: ${outputFile.absolutePath}")
51+
throw IllegalStateException("Cannot create output file: ${outputFile.absolutePath}")
5252
}
5353

5454
mergeShadowJarsIntoOutput(outputFile, projects)

buildSrc/src/main/kotlin/eternalcode.java.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group = "com.eternalcode"
6-
version = "1.3.4"
6+
version = "1.3.5"
77

88
repositories {
99
mavenCentral()

0 commit comments

Comments
 (0)