Skip to content

Commit f697b68

Browse files
committed
-Dfile.encoding=UTF8
Fixes #111
1 parent 4238a3e commit f697b68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install:
1212
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\sbt-bin.zip", "C:\sbt")
1313
}
1414
- cmd: SET PATH=C:\sbt\sbt\bin;%JAVA_HOME%\bin;%PATH%
15-
- cmd: SET SBT_OPTS=-XX:MaxPermSize=2g -Xmx4g
15+
- cmd: SET SBT_OPTS=-XX:MaxPermSize=2g -Xmx4g -Dfile.encoding=UTF8
1616
build_script:
1717
- sbt clean compile
1818
test_script:

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ lazy val plugin = project
6060
scriptedSettings,
6161
scriptedLaunchOpts += ("-Dproject.version=" + version.value),
6262
scriptedLaunchOpts ++= sys.process.javaVmArguments.filter(
63-
a => Seq("-Xmx", "-Xms", "-XX").exists(a.startsWith)
63+
a => Seq("-Xmx", "-Xms", "-XX", "-Dfile").exists(a.startsWith)
6464
),
6565
scriptedDependencies := {
6666
val p1 = (publishLocal in core).value

0 commit comments

Comments
 (0)