Skip to content

Commit

Permalink
Merge pull request #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 39dd45c + dac735e commit fac98ca
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 fac98ca

Please sign in to comment.