Fix cross + input task

This commit is contained in:
Eugene Yokota 2020-04-24 01:08:21 -04:00
parent 063b32bbba
commit 11a403251a
1 changed files with 1 additions and 1 deletions

View File

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