mirror of https://github.com/vector-im/riot-web
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',
|
||||
this.hsUrl
|
||||
];
|
||||
const registerCmd = `./scripts/register_new_matrix_user ${registerArgs.join(' ')}`;
|
||||
const registerCmd = `./register_new_matrix_user ${registerArgs.join(' ')}`;
|
||||
const allCmds = [
|
||||
`cd ${this.synapseSubdir}`,
|
||||
". env/bin/activate",
|
||||
". activate",
|
||||
registerCmd
|
||||
].join(' && ');
|
||||
|
||||
|
|
Loading…
Reference in New Issue