Skip to content

Commit fac98ca

Browse files
authored
Merge pull request finos#782 from yadnyeshkolte/update-pullRemote.js
fix: Update pullRemote.js to set appropriate directory permissions
2 parents 39dd45c + dac735e commit fac98ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/proxy/processors/push-action/pullRemote.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const exec = async (req, action) => {
1616
}
1717

1818
if (!fs.existsSync(action.proxyGitPath)) {
19-
fs.mkdirSync(action.proxyGitPath, '0777', true);
19+
fs.mkdirSync(action.proxyGitPath, '0755', true);
2020
}
2121

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

0 commit comments

Comments
 (0)