调用Git Gui时出现节点子process.exec错误

时间:2019-05-27 10:59:13

标签: node.js git

我正在尝试使用node启动Git GUI,给定的代码片段正确地启动了Git GUI,但是当我尝试关闭GUI窗口时,出现错误提示

“命令失败:Git GUI”

并给出错误代码:259

有人可以帮我吗?

var path = require('path')
    , config = require('config')
    , child_process = require('child_process')
    , exec = child_process.exec

var cwd = 'D:\\';

exec('git gui'
        , {
            cwd: cwd
        }, function (error, stdout, stderr) {
            if (error !== null) {
                console.error('exec error: ' + error);
            }

            //Execute the callback. 
            console.log("EXIT");
});

0 个答案:

没有答案