Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix missing semicolon in test/cli-test.js (#777)
Co-authored-by: JUAN RAFAEL MEJIA LAGUNA <juan.mejia@di.unanleon.edu.ni>
  • Loading branch information
Mejia1994 and mejiaest committed Apr 12, 2021
1 parent af216b0 commit e53a6e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cli-test.js
Expand Up @@ -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
Expand Down

0 comments on commit e53a6e8

Please sign in to comment.