Skip to content

Commit 2c8a9e1

Browse files
committed
fix: fix tmp path
1 parent bf74b02 commit 2c8a9e1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Mark stale issues and pull requests
1+
name: Mark stale issues and PRs
22

33
on:
44
schedule:

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ val appMainClass: String by project
4141

4242
application {
4343
mainClass.set(appMainClass)
44-
val tmp = System.getProperty("java.io.tmpdir")
44+
45+
val tmp = "/tmp/" // "${System.getProperty("java.io.tmpdir")}${File.pathSeparator}"
4546
applicationDefaultJvmArgs += listOf(
4647
"--show-version",
4748
"--enable-preview",

0 commit comments

Comments
 (0)