fix windows escaping (and broken tests) - #19011
Conversation
Summary of ChangesHello @scidomino, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request refines the path escaping logic specifically for Windows environments by adjusting which characters are considered 'special' and therefore require quoting. This change ensures that paths containing tildes are handled correctly without unnecessary escaping, and a corresponding test has been updated to reflect and validate this improved behavior. Highlights
Changelog
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
|
Size Change: +1 B (0%) Total Size: 24.4 MB ℹ️ View Unchanged
|
There was a problem hiding this comment.
Code Review
This pull request fixes an issue with path escaping on Windows by no longer treating the tilde (~) as a special character, and also corrects a related test. The changes are valid. I've identified an opportunity to make the Windows path escaping more robust, aligning with best practices for sanitizing file paths in utility functions. The regular expression for detecting special characters is missing < and >, which are redirection operators in the Windows command shell. I've added a suggestion to include them to prevent potential misinterpretation by the shell and mitigate potential path traversal or command injection vulnerabilities.
e7ba69c to
9785cd3
Compare
9785cd3 to
bec516d
Compare
Summary
Fix window escaping. Also fixes some broken tests
Related Issues
Fixes test failures introduced in #18965