Merge pull request #51 from matrix-org/bwindels/fixsynapseinstallation2
adjust path to register script for pip installationpull/21833/head
commit
c76dc87412
|
@ -59,10 +59,10 @@ module.exports = class RestSessionCreator {
|
||||||
'--no-admin',
|
'--no-admin',
|
||||||
this.hsUrl
|
this.hsUrl
|
||||||
];
|
];
|
||||||
const registerCmd = `./scripts/register_new_matrix_user ${registerArgs.join(' ')}`;
|
const registerCmd = `./register_new_matrix_user ${registerArgs.join(' ')}`;
|
||||||
const allCmds = [
|
const allCmds = [
|
||||||
`cd ${this.synapseSubdir}`,
|
`cd ${this.synapseSubdir}`,
|
||||||
". env/bin/activate",
|
". activate",
|
||||||
registerCmd
|
registerCmd
|
||||||
].join(' && ');
|
].join(' && ');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue