Skip to content

Commit

Permalink
Merge pull request finos#782 from yadnyeshkolte/update-pullRemote.js
Browse files Browse the repository at this point in the history
fix: Update pullRemote.js to set appropriate directory permissions
  • Loading branch information
JamieSlome authored Nov 7, 2024
2 parents e14ee57 + b8d1736 commit a3f3391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/proxy/processors/push-action/pullRemote.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const exec = async (req, action) => {
}

if (!fs.existsSync(action.proxyGitPath)) {
fs.mkdirSync(action.proxyGitPath, '0777', true);
fs.mkdirSync(action.proxyGitPath, '0755', true);
}

const cmd = `git clone ${action.url} --bare`;
Expand Down

0 comments on commit a3f3391

Please sign in to comment.