From e53a6e8cd2ea9cb44d63af561f936def7c921c30 Mon Sep 17 00:00:00 2001 From: Mejia1994 Date: Mon, 12 Apr 2021 11:59:53 -0600 Subject: [PATCH] Fix missing semicolon in `test/cli-test.js` (#777) Co-authored-by: JUAN RAFAEL MEJIA LAGUNA --- test/cli-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cli-test.js b/test/cli-test.js index cfaabdd..c01395c 100644 --- a/test/cli-test.js +++ b/test/cli-test.js @@ -10,7 +10,7 @@ var moduleVersion = require('../package').version; function changeForOS (command) { var requireFlag = !isLegacyNodeVersion ? '--require esm' : ''; - command = command.replace('bin/mustache', 'node ' + requireFlag + ' bin/mustache') + command = command.replace('bin/mustache', 'node ' + requireFlag + ' bin/mustache'); if (process.platform === 'win32') { return command