-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix ls-files quoting #457
Fix ls-files quoting #457
Conversation
Tested, goes into an infinite loop with error;
Looking more into it. |
Took a look and I'm yet to figure out why it goes into an infinite loop even when ignore is |
Looked into it, but could not reproduce your problem easily. Used sugarlabs/flipsticks@eb48ca9.
Removing
Made a local copy of sugar3;
Paths in traceback show local bundlebuilder is used. Check. Applied my patch, and a CPU loop occurs for a while then RecursionError. It would appear the coding is not defensive. 😁 Pushed a fix. |
File names are quoted and then mishandled by the builder. http://lists.sugarlabs.org/archive/sugar-devel/2021-February/058971.html Use null-terminated files.
7168afb
to
5e0c2f7
Compare
Tested, works as expected. Thanks. |
File names are quoted and then mishandled by the builder.
http://lists.sugarlabs.org/archive/sugar-devel/2021-February/058971.html
Use null-terminated files.
Untested.