Skip to content

Commit

Permalink
Fix scaffolding parser
Browse files Browse the repository at this point in the history
  • Loading branch information
jtournay committed Jul 13, 2012
1 parent f342a9d commit 4c4a5c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scaffold/src/main/scala/scaffolding-plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object ScaffoldPlugin extends sbt.Plugin {
.filter(f => f.isDirectory && !f.isHidden)
.map(_.getName: Parser[String])

Space ~> templates.reduceLeft(_ | _)
(Space+) ~> templates.reduceLeft(_ | _)
}

val scafffoldTask = scaffold <<= InputTask(parser){ (argTask: TaskKey[String]) =>
Expand Down

0 comments on commit 4c4a5c5

Please sign in to comment.