Script execution debug log: Replace back-tick by single quote#18
Script execution debug log: Replace back-tick by single quote#18bbczeuz wants to merge 2 commits intoNetworkConfiguration:masterfrom
Conversation
|
Don't merge yet, there are more similar issues. Is there some intention behind this? |
|
Actually, there are still 28 such cases. What's the intention behind this? |
|
Commit 127c06e fixes the remaining cases, just in case you want to merge this change. |
|
@bbczeuz I think the intention was that gcc at the time - or something else I was using many years ago, did the same. becomes Thoughts? |
|
I don't really mind. Quotes suggest a string, but we don't do any escaping anyhow, so it doesn't matter. Do you want me to update the PR to the colon-version (and rebase?)? |
|
It's all a string :) Although it might escape using octal rather than a space. I've not checked that in a while. Sure, go head and do it and we'll see about merging it. |
|
I've decided to do this myself as I need to get a release out soon. |
This PR replaces the initial back-tick before the script name by a single quote. Simplifies parsing of the output log
Before:
After:
(Compare lines 4, 5 & 8)