소스 검색

Cleanup for stdio

master
pb 1 년 전
부모
커밋
473ba530a9
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 3
    3
      bin/elxr
  2. 1
    1
      index.js

+ 3
- 3
bin/elxr 파일 보기

@@ -21,9 +21,9 @@ const child = spawn(
npmcmd
, npmrun.concat(process.argv.slice(2)), {
env, cwd: __dirname
, stdio: ['pipe', process.stdout, process.stderr],
inherit: true,
shell: true,
, stdio: [process.stdin, process.stdout, process.stderr]
, inherit: true
, shell: true
});

// const child = spawn(

+ 1
- 1
index.js 파일 보기

@@ -15,7 +15,7 @@ var any = utils.any;
var Tasq = utils.Tasq
var statuslog = utils.Traq
var Traq = utils.Traq
console.error('EEEEEEEEEEEEEEEEEEEE')
// console.error('EEEEEEEEEEEEEEEEEEEE')


var ENV = Object.assign({}, process.env); // Shallow clone so we can set values and reuse for reshelling spawns.

Loading…
취소
저장