Fix cross + scoped task

This commit is contained in:
Eugene Yokota 2020-04-24 01:06:18 -04:00
parent 588d01b2dd
commit 063b32bbba
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ object Cross {
commandsByVersion.flatMap { commandsByVersion.flatMap {
case (v, commands) => case (v, commands) =>
commands match { commands match {
case Seq(c) => Seq(s"$SwitchCommand $verbose $v! $c") case Seq(c) => Seq(s"$SwitchCommand $verbose $v $c")
case Seq() => Nil // should be unreachable case Seq() => Nil // should be unreachable
case multi if fullArgs.isEmpty => case multi if fullArgs.isEmpty =>
Seq(s"$SwitchCommand $verbose $v! all ${multi.mkString(" ")}") Seq(s"$SwitchCommand $verbose $v! all ${multi.mkString(" ")}")