node-svn-spawn icon indicating copy to clipboard operation
node-svn-spawn copied to clipboard

cannot ignore stdio

Open yibingxiong opened this issue 6 years ago • 0 comments
trafficstars

var Client = require('svn-spawn');
var client = new Client({
    cwd: '/path to your svn working directory',
    username: 'username', // optional if authentication not required or is already saved
    password: 'password', // optional if authentication not required or is already saved
    noAuthCache: true, // optional, if true, username does not become the logged in user on the machine
});

Like this, when the username or password is wrong. the server will open a stdio to wait input username and password. This is can't ignore the stdio. Could you support this feature?

yibingxiong avatar Nov 18 '19 02:11 yibingxiong