aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/cc/spray/boilerplate/BoilerplatePlugin.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/cc/spray/boilerplate/BoilerplatePlugin.scala')
-rw-r--r--src/main/scala/cc/spray/boilerplate/BoilerplatePlugin.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/cc/spray/boilerplate/BoilerplatePlugin.scala b/src/main/scala/cc/spray/boilerplate/BoilerplatePlugin.scala
index df50691..41d2b65 100644
--- a/src/main/scala/cc/spray/boilerplate/BoilerplatePlugin.scala
+++ b/src/main/scala/cc/spray/boilerplate/BoilerplatePlugin.scala
@@ -32,7 +32,7 @@ object BoilerplatePlugin extends Plugin {
def watch(sourceDirKey: SettingKey[File], filterKey: SettingKey[FileFilter], excludeKey: SettingKey[FileFilter]) =
watchSources <++= (sourceDirKey, filterKey, excludeKey) map descendents
def descendents(sourceDir: File, filt: FileFilter, excl: FileFilter) =
- sourceDir.descendantsExcept(filt, excl).get
+ sourceDir.descendentsExcept(filt, excl).get
def generateFromTemplates(streams: TaskStreams, sourceDir: File, targetDir: File): Seq[File] = {
val files = sourceDir ** "*.template"