Add uid param to child_process.exec call
This commit is contained in:
parent
ef09e05eaf
commit
7319ea062d
@ -147,7 +147,7 @@ io.on('connection', function(socket){
|
|||||||
git merge ${now}
|
git merge ${now}
|
||||||
`;
|
`;
|
||||||
//winston.info(cmd);
|
//winston.info(cmd);
|
||||||
exec(cmd, function(error, stdout, stderr) {
|
exec(cmd, { uid: 1000 }, function(error, stdout, stderr) {
|
||||||
if (error) { winston.error(error); }
|
if (error) { winston.error(error); }
|
||||||
if (!stdout.includes('CONFLICT')) { // Case-sensitivity seems brittle here. Better to check return code rather than stdout? Can child_process be called w/signature to include return code?
|
if (!stdout.includes('CONFLICT')) { // Case-sensitivity seems brittle here. Better to check return code rather than stdout? Can child_process be called w/signature to include return code?
|
||||||
var cmd2 = `cd ${noteDir} && git branch -d ${now}`
|
var cmd2 = `cd ${noteDir} && git branch -d ${now}`
|
||||||
|
Loading…
Reference in New Issue
Block a user