Skip to content

Commit

Permalink
Create empty directories in ModelCrossReference
Browse files Browse the repository at this point in the history
  • Loading branch information
mrerrormessage committed Aug 9, 2016
1 parent 275168d commit 8daf9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/ModelCrossReference.scala
Expand Up @@ -2,7 +2,7 @@ import sbt._

object ModelCrossReference {
def apply(modelsDir: File): Unit = {
directoriesToCreate.foreach(modelsDir / _)
directoriesToCreate.foreach(d => FileActions.createDirectories(modelsDir / d))
modelDuplications.foreach {
case (src, filter, dest) =>
(modelsDir / src * filter).get.foreach { f =>
Expand Down

0 comments on commit 8daf9a6

Please sign in to comment.