Skip to content

Commit

Permalink
changed the way how the Running ... print is displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
bananasmoothii committed Oct 3, 2022
1 parent b32bc87 commit 7e66896
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ fun runJars() {
if (download.onDownloadFinish.isBlank()) mutableListOf()
else download.onDownloadFinish.dollarReplace(download.matcher!!).split(" ").toMutableList()
download.onDownloadFinishArgs.mapTo(command) { it.dollarReplace(download.matcher!!) }
printlnIfNotQuiet("Running $command")
printlnIfNotQuiet { "Running ${command.joinToString(" ")}" }
ProcessBuilder("java")
ProcessBuilder(command)
.directory(File("."))
Expand Down

0 comments on commit 7e66896

Please sign in to comment.