Procházet zdrojové kódy

Fixed 0 arg scenario

production
guest před 2 roky
rodič
revize
61e4056e72
1 změnil soubory, kde provedl 10 přidání a 2 odebrání
  1. 10
    2
      cliverse.js

+ 10
- 2
cliverse.js Zobrazit soubor

@@ -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(

Načítá se…
Zrušit
Uložit