mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
dont assume bash when creating rest users
This commit is contained in:
parent
4c79e3bd0d
commit
7fbfe3159a
1 changed files with 2 additions and 2 deletions
|
@ -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'});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue