From a72934556c60c48734d815d629a839bf2183ecba Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 24 Jun 2019 15:30:18 +0200 Subject: [PATCH] look for activate in cwd --- src/rest/creator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rest/creator.js b/src/rest/creator.js index 5897ae2683..31c352b31a 100644 --- a/src/rest/creator.js +++ b/src/rest/creator.js @@ -62,7 +62,7 @@ module.exports = class RestSessionCreator { const registerCmd = `./register_new_matrix_user ${registerArgs.join(' ')}`; const allCmds = [ `cd ${this.synapseSubdir}`, - ". activate", + ". ./activate", registerCmd ].join(' && ');