From 75df21dfb1825087ccd06ea6510402a2db357589 Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 24 Feb 2020 17:50:03 +0000 Subject: [PATCH] Fix check script Each command is an array so needs to be an array of arrays --- hak/matrix-seshat/check.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hak/matrix-seshat/check.js b/hak/matrix-seshat/check.js index d501349..ad58a8e 100644 --- a/hak/matrix-seshat/check.js +++ b/hak/matrix-seshat/check.js @@ -34,7 +34,7 @@ module.exports = async function(hakEnv, moduleInfo) { }); } - const tools = ['python', '--version']; // node-gyp uses python for reasons beyond comprehension + const tools = [['python', '--version']]; // node-gyp uses python for reasons beyond comprehension if (hakEnv.isWin()) { tools.push(['perl', '--version']); // for openssl configure tools.push(['patch', '--version']); // to patch sqlcipher Makefile.msc