Skip to content
Snippets Groups Projects
Commit e551a947 authored by Ruben Backx's avatar Ruben Backx :coffee:
Browse files

Fix sass compilation for sassc

parent ca56a1a5
No related branches found
No related tags found
1 merge request!837Patch for software project
...@@ -227,7 +227,7 @@ task<Exec>("sassCompile") { ...@@ -227,7 +227,7 @@ task<Exec>("sassCompile") {
File("src/main/resources/scss").listFiles()!!.filter { it.extension == "scss" && !it.name.startsWith("_") }.forEach { File("src/main/resources/scss").listFiles()!!.filter { it.extension == "scss" && !it.name.startsWith("_") }.forEach {
exec { exec {
executable = "bash" executable = "bash"
args = listOf("-l", "-c", "sassc", "src/main/resources/scss/${it.name}", "src/main/resources/static/css/${it.nameWithoutExtension}.css") args = listOf("-l", "-c", "sassc src/main/resources/scss/${it.name} src/main/resources/static/css/${it.nameWithoutExtension}.css")
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment