look for activate in cwd

This commit is contained in:
Bruno Windels 2019-06-24 15:30:18 +02:00
parent c76dc87412
commit a72934556c

View file

@ -62,7 +62,7 @@ module.exports = class RestSessionCreator {
const registerCmd = `./register_new_matrix_user ${registerArgs.join(' ')}`; const registerCmd = `./register_new_matrix_user ${registerArgs.join(' ')}`;
const allCmds = [ const allCmds = [
`cd ${this.synapseSubdir}`, `cd ${this.synapseSubdir}`,
". activate", ". ./activate",
registerCmd registerCmd
].join(' && '); ].join(' && ');