You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
The fix could be to just provide shell=True to that function, but I suggest to replace the whole call with try_to_run(['hg', 'log', '-r', '.', '-T', '{node}']).
Thank you for supporting Mercurial. If you have any questions, feel free to ping me.
The text was updated successfully, but these errors were encountered:
Noticed by browsing somebody else's CI output:
But, as you can see in this file: https://github.com/codecov/codecov-python/blob/master/codecov/__init__.py#L865 the command's intent is to provide
-d
not tohg id
, but totr
. It doesn't work because by defaultshell
argument oftry_to_run()
is False.The fix could be to just provide shell=True to that function, but I suggest to replace the whole call with
try_to_run(['hg', 'log', '-r', '.', '-T', '{node}'])
.Thank you for supporting Mercurial. If you have any questions, feel free to ping me.
The text was updated successfully, but these errors were encountered: