Conversation
Summary of ChangesHello @YueerMoe, 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! 此拉取请求修复了 Windows 更新脚本中的一个关键错误,该错误导致 Highlights
Changelog
Activity
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
|
src-tauri/src/services/update.rs
Outdated
| assert!(content.contains( | ||
| r#"if exist ""C:\Temp\endfield-cat-update"" rd /s /q ""C:\Temp\endfield-cat-update""""# | ||
| )); |
There was a problem hiding this comment.
这个测试断言似乎也受到了批处理命令中多余引号的影响。断言检查的字符串末尾包含了四个双引号,而根据修正后的命令,它应该只包含两个双引号。
为了与代码的修复保持一致,请更新此断言。
| assert!(content.contains( | |
| r#"if exist ""C:\Temp\endfield-cat-update"" rd /s /q ""C:\Temp\endfield-cat-update""""# | |
| )); | |
| assert!(content.contains( | |
| r#"if exist ""C:\Temp\endfield-cat-update"" rd /s /q ""C:\Temp\endfield-cat-update"""# | |
| )); |
This reverts commit 3ff4c73.
fix(update): 修复更新提示找不到路径
chore(version): bump to 0.2.1
修复 Windows 更新脚本中 cmd 引号转义错误,避免出现「系统找不到路径 "\"」。