Skip to content

Commit

Permalink
Fix bug: correctly create ChangeWorkdirCommand on mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
anatoliykmetyuk committed Apr 14, 2020
1 parent 02c6140 commit 1b17eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IssueRunner.scala
Expand Up @@ -19,7 +19,7 @@ sealed trait Statement extends Tree {
case ValDef(name, oldVal) => ValDef(name, f(oldVal))
case SbtCommand(oldVal) => SbtCommand(f(oldVal))
case ShellCommand(oldVal) => ShellCommand(f(oldVal))
case ChangeWorkdirCommand(oldVal) => ShellCommand(f(oldVal))
case ChangeWorkdirCommand(oldVal) => ChangeWorkdirCommand(f(oldVal))
}
}
case class ValDef(name: String, value: String) extends Statement
Expand Down

0 comments on commit 1b17eba

Please sign in to comment.