Skip to content
Snippets Groups Projects
Commit e6d9c963 authored by Ali Sinan Köksal's avatar Ali Sinan Köksal
Browse files

Add cp script generation and cleaning to all tasks

parent 5b02cd63
No related branches found
No related tags found
No related merge requests found
......@@ -20,9 +20,9 @@ class FunCheckProject(info: ProjectInfo) extends DefaultProject(info) with FileT
val scriptPath: Path = "." / "funcheck"
val cpScriptPath: Path = "." / "cp"
lazy val all = task { None } dependsOn(generateScript) describedAs("Compile everything and produce a script file.")
lazy val all = task { None } dependsOn(generateScript, generateCpScript) describedAs("Compile everything and produce a script file.")
override def cleanAction = super.cleanAction dependsOn(cleanScript)
override def cleanAction = super.cleanAction dependsOn(cleanScript, cleanCpScript)
lazy val generateScript = genScript
def genScript = fileTask(scriptPath ::Nil)({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment