Sfoglia il codice sorgente

missing semicolon

pull/777/head
JUAN RAFAEL MEJIA LAGUNA 5 anni fa
parent
commit
f39620f704
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      test/cli-test.js

+ 1
- 1
test/cli-test.js Vedi File

@@ -10,7 +10,7 @@ var moduleVersion = require('../package').version;


function changeForOS (command) { function changeForOS (command) {
var requireFlag = !isLegacyNodeVersion ? '--require esm' : ''; 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') { if (process.platform === 'win32') {
return command return command


Loading…
Annulla
Salva