Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • hansegucker/AlekSIS-Core
  • pinguin/AlekSIS-Core
  • AlekSIS/official/AlekSIS-Core
  • sunweaver/AlekSIS-Core
  • sggua/AlekSIS-Core
  • edward/AlekSIS-Core
  • magicfelix/AlekSIS-Core
7 results
Show changes
Commits on Source (3)
......@@ -14,6 +14,11 @@ Added
* Allow configuration of database options
Fixed
~~~~~
* Correctly update theme colours on change again
`2.3.1`_ – 2021-12-17
---------------------
......
......@@ -23,7 +23,7 @@ def get_preference(section: str, name: str) -> str:
def clean_scss(*args, **kwargs) -> None:
"""Unlink compiled CSS (i.e. cache invalidation)."""
sass_storage = SassFileStorage()
__, files = sass_storage.listdir("")
__, files = sass_storage.listdir("public")
for source_map in filter(lambda x: x.endswith(".css.map"), files):
sass_storage.delete(source_map)
sass_storage.delete(f"public/{source_map}")