diff --git a/setup.py b/setup.py index f60e5dd0322269e78d126137fa4efc64959eb52c..6a247b2862c584c663c8798378b7573ed7b0f1d6 100644 --- a/setup.py +++ b/setup.py @@ -120,7 +120,7 @@ def get_data_files() -> List[str]: files = [] for d in dirs: target_dir = Path("share") / "freva" / "deployment" / d.relative_to(ASSET_DIR) - add_files = [str(f.relative_to(ASSET_DIR)) for f in d.rglob("*") if f.is_file()] + add_files = [str(f.relative_to(THIS_DIR)) for f in d.rglob("*") if f.is_file()] if add_files: files.append((str(target_dir), add_files)) return files