Add uid param to child_process.exec call

This commit is contained in:
jkaplon 2020-04-08 17:09:03 -04:00
parent ef09e05eaf
commit 7319ea062d

View File

@ -147,7 +147,7 @@ io.on('connection', function(socket){
git merge ${now}
`;
//winston.info(cmd);
exec(cmd, function(error, stdout, stderr) {
exec(cmd, { uid: 1000 }, function(error, stdout, stderr) {
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?
var cmd2 = `cd ${noteDir} && git branch -d ${now}`