services: startTurn needs a shell

This commit is contained in:
Girish Ramakrishnan
2024-02-28 15:59:42 +01:00
parent 18a680a85b
commit 64bb53abc3

View File

@@ -954,7 +954,7 @@ async function startTurn(existingInfra) {
await safe(shell.exec('stopTurn', 'docker stop turn', {})); // ignore error
await safe(shell.exec('removeTurn', 'docker rm -f turn', {})); // ignore error
await shell.exec('startTurn', runCmd, {});
await shell.exec('startTurn', runCmd, { shell: '/bin/bash' });
}
async function teardownTurn(app, options) {