mirror of https://github.com/sbt/sbt.git
include managed directory in clean
This commit is contained in:
parent
aba1dd96c9
commit
9e044d042d
|
|
@ -137,7 +137,7 @@ object Defaults
|
|||
)
|
||||
|
||||
lazy val projectTasks: Seq[Setting[_]] = Seq(
|
||||
cleanFiles <<= Seq(target, sourceManaged).join,
|
||||
cleanFiles <<= Seq(managedDirectory, target, sourceManaged).join,
|
||||
cleanKeepFiles <<= historyPath(_.toList),
|
||||
clean <<= (cleanFiles, cleanKeepFiles) map doClean,
|
||||
consoleProject <<= consoleProjectTask,
|
||||
|
|
|
|||
Loading…
Reference in New Issue