Skip to content

Commit

Permalink
Fix scalac -encoding flag value (#240)
Browse files Browse the repository at this point in the history
See https://docs.scala-lang.org/overviews/compiler-options/index.html

The previous value was generating the following error:
```scala
[error] IO error while decoding UTF-8 with UTF-8: UTF-8 (No such file or directory)
[error] Please try specifying another one using the -encoding option
[error] one error found
```
  • Loading branch information
guizmaii authored Aug 28, 2023
1 parent 2a92566 commit 85e841c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ trait ScalaCompilerSettings {
private val stdOptions = Seq(
"-deprecation",
"-encoding",
"UTF-8",
"utf8",
"-feature",
"-unchecked"
)
Expand Down

0 comments on commit 85e841c

Please sign in to comment.