There was an error while loading. Please reload this page.
1 parent 4baaea4 commit 10ce190Copy full SHA for 10ce190
1 file changed
src/remote_ops.py
@@ -221,7 +221,7 @@ def exec_command(
221
222
assert len(cmds) >= 1
223
224
- cmdline = ";".join(cmds)
+ cmdline = " && ".join(cmds)
225
assert type(cmdline) is str
226
assert cmdline != ""
227
@@ -1263,7 +1263,7 @@ def _build_cmdline(
1263
1264
cmd_items.append(__class__._ensure_cmdline(cmd))
1265
1266
- cmdline = ';'.join(cmd_items)
+ cmdline = ' && '.join(cmd_items)
1267
1268
return cmdline
1269
0 commit comments