Yves W
Yves W
Same issue, and seems it requires the user to press an enter key to confirm the change.
Same issue. see https://github.com/larsch/ocra/issues/168
WIth old versions of ruby like 2.5, I do not need to manually add dlls but when I upgrade to 2.7.5, I also need to append dlls even just a...
Similar scenario in #217, if you use MRI ruby, you can just define a tag with namespace like: ```ruby tag 'ns1:Transmission' ```
> Blocked until reviewed in kconfiglib repo. https://github.com/zephyrproject-rtos/Kconfiglib/pull/35
> Can you please add a small test to showcase what exactly this PR fixes? If I understand correctly it is a cosmetic change that makes sure that the printed...
The PR was originally to solve following issue: ```python from pathlib import Path from west.commands import WestCommand class SubprocessFail(WestCommand): def __init__(self): super().__init__( 'subprocess_fail', 'Test subprocess fail', 'Test subprocess fail') def...
> Do you realize the error message below is NOT from subprocess? I see, the `quote_sh_list` was usually used to quote `args` passed to subprocess, so I just mentioned it....
> So do you plan to change the commit message? No, it's clear.
What's do you think about this: ```shell subprocess args can accept str, PathLike, or bytes (POSIX only), but shlex.quote() only works with str. For safety and cross-platform compatibility, convert PathLike...