0
Atom 패키지를 만들고 ShellJS 명령을 통합하려고합니다. 난 exec()
commmand를 사용하고, 모든 명령에 대해 매번 null을 반환합니다.ShelllJS exec가 모든 명령에 대해 null을 반환 함 - Atom 패키지 개발
shelljs = require 'shelljs/global'
console.log exec('which git').code // returns null
console.log which 'git' // returns the correct path
왜?
'console.log (exec ('git'). code);'시도해 보았습니다. Shelljs 버전은 0.7.4입니다. 어쩌면이 문제는 shelljs에서 수정되었을 수도 있습니다. – shaochuancs