We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7bde3b commit 8855627Copy full SHA for 8855627
libvcs/_internal/run.py
@@ -150,6 +150,8 @@ def run(
150
log_in_real_time: bool = True,
151
check_returncode: bool = True,
152
callback: Optional[ProgressCallbackProtocol] = None,
153
+ *args,
154
+ **kwargs
155
):
156
"""Run 'cmd' in a shell and return the combined contents of stdout and
157
stderr (Blocking). Throws an exception if the command exits non-zero.
@@ -192,6 +194,8 @@ def progress_cb(output, timestamp):
192
194
stderr=subprocess.PIPE,
193
195
stdout=subprocess.PIPE,
196
cwd=cwd,
197
198
199
)
200
201
all_output = []
0 commit comments