dont assume bash when creating rest users

pull/21833/head
Bruno Windels 2019-04-09 16:19:44 +02:00
parent 4c79e3bd0d
commit 7fbfe3159a
1 changed files with 2 additions and 2 deletions

View File

@ -63,9 +63,9 @@ module.exports = class RestSessionCreator {
const registerCmd = `./scripts/register_new_matrix_user ${registerArgs.join(' ')}`;
const allCmds = [
`cd ${this.synapseSubdir}`,
"source env/bin/activate",
". env/bin/activate",
registerCmd
].join(';');
].join('&&');
await execAsync(allCmds, {cwd: this.cwd, encoding: 'utf-8'});
}