File size: 902 Bytes
f50dbbb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Issue
**Title:** [v2] Fix parent reference warning
## Description
*Issue #, if available:*
*Description of changes:*
Improves the parent-directory reference check in the S3 download path so that compare keys with a leading slash (e.g. `/../foo`) are correctly flagged.
The compare key is now anchored against the destination directory root before `os.path.normpath()` is applied, preventing the leading slash from collapsing the `..` segment away.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
## Task
Modify the repository so that the issue described above is resolved. The repository is checked out at base commit `23c202e1d1e0`. Edit files in place; the verifier captures your changes via `git diff` and scores them against an oracle patch using SWE-RL-style diff-similarity reward. |