Fix kivy path in setup.py

This commit is contained in:
Dionysis Grigoropoulos 2025-02-10 02:00:17 +02:00
parent 3b2e1adaf2
commit 157f99ef19
No known key found for this signature in database

View File

@ -37,7 +37,7 @@ __variant__ = get_variant()
def glob_paths(pattern):
out_files = []
src_path = os.path.join(os.path.dirname(__file__), "kivymd")
src_path = os.path.join(os.path.dirname(__file__), "sbapp/kivymd")
for root, dirs, files in os.walk(src_path):
for file in files: