Explorar el Código

Fixed 0 arg scenario

master
guest hace 2 años
padre
commit
61e4056e72
Se han modificado 1 ficheros con 10 adiciones y 2 borrados
  1. 10
    2
      cliverse.js

+ 10
- 2
cliverse.js Ver fichero

@@ -4,8 +4,16 @@ const fs = require('fs')
function nodeShellExec() {

var args = Array.from(arguments);
var opts = args[2] = args[2] || {}
opts.title ? null : opts.title = `${args[0]} ${args[1] }`
if(args.length > 1){
var opts = args[2] = args[2] || {}
opts.title ? null : opts.title = `${args[0]} ${args[1] }`
}
else {
opts = {
title : `${args[0]}`
// , inherit: true, shell: true
}
}
// // const spawn = require('child_process').spawn;
// const s = spawn(

Cargando…
Cancelar
Guardar