Skip to content

Commit

Permalink
🐛 fix space issue
Browse files Browse the repository at this point in the history
  • Loading branch information
theapache64 committed Mar 9, 2020
1 parent eb30866 commit 324db0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ object Main {
@JvmStatic
fun main(args: Array<String>) {

println("😇 Initializing auto-motion ...")

// Checking if all necessary dependencies are available
if (isAllDepsAvailable()) {
try {
Expand Down Expand Up @@ -201,7 +203,7 @@ object Main {
isClearAfterFinish = true
)
println("✔️ Commands executed")
println("\uD83C\uDF89 File saved to file://${commandCook.outputFileName}")
println("\uD83C\uDF89 File saved to file://${commandCook.outputFileName.replace(" ", "%20")}")
if (!isKeepSh) {
commandSh.delete()
}
Expand Down

0 comments on commit 324db0c

Please sign in to comment.