Skip to content

Commit

Permalink
avoid overriding settings
Browse files Browse the repository at this point in the history
  • Loading branch information
MasseGuillaume committed Oct 17, 2013
1 parent 3383ec3 commit 0087b67
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ object BrowserNotifierPlugin extends Plugin {

val playAssetsDirectories = SettingKey[Seq[File]]("play-assets-directories")

override lazy val projectSettings = super.projectSettings ++ Seq(
lazy val livereload = Seq(
watchSources <++= playAssetsDirectories map { dirs =>
for {
dir <- dirs
Expand All @@ -38,5 +38,4 @@ object BrowserNotifierPlugin extends Plugin {
watchSources <++= baseDirectory map { path => ((path / "app/assets") ** "*").get },
BrowserNotifierPlugin.browserNotification <<= BrowserNotifierPlugin.compileTask.triggeredBy(compile in Compile)
)

}

0 comments on commit 0087b67

Please sign in to comment.