Files

9 lines
253 B
Python
Raw Permalink Normal View History

2026-01-17 18:55:25 +03:00
from os import system as console
from os.path import join
def compile_styles():
dir = "blueprints/risdeveau/static/style"
files = ("risdeveau",)
for file in files:
console(f"sass {join(dir, file+'.scss')} {join(dir, file+'.css')}")