Skip to content

Commit

Permalink
Add utf-8 encoding to remote env
Browse files Browse the repository at this point in the history
- Fixed a bug where the Korean test function name was broken.
  • Loading branch information
JSpiner authored and skrugly committed Aug 15, 2022
1 parent 5bb3e8b commit ab471e6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugin/src/main/kotlin/Mirakle.kt
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,8 @@ open class ExecuteOnRemoteTask : Exec() {
val remoteGradleCommand = "./gradlew -P$BUILD_ON_REMOTE=true $taskArgs"
val remoteBashCommand = listOf(
"set -e $additionalCommand",
"export LANG=C.UTF-8",
"export LC_CTYPE=C.UTF-8",
"cd $remoteFolder",
remoteGradleCommand
).joinToString(" && ")
Expand Down

0 comments on commit ab471e6

Please sign in to comment.