We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b11fe46 commit 3195805Copy full SHA for 3195805
unblob/extractor.py
@@ -47,6 +47,12 @@ def is_recursive_link(path: Path) -> bool:
47
return False
48
49
50
+def fix_symlink(path: Path, outdir: Path, task_result: TaskResult) -> Path:
51
+ # This is a temporary function for existing unit tests in tests/test_extractor.py
52
+ fix_extracted_directory(outdir, task_result)
53
+ return path
54
+
55
56
def sanitize_symlink_target(base_dir, current_dir, target):
57
# Normalize all paths to their absolute forms
58
base_dir_abs = os.path.abspath(base_dir)
0 commit comments