chore: change repo permissions from 777 to 755

This commit is contained in:
Nicolas Meienberger 2024-02-12 08:35:38 +01:00
parent 6711a0055e
commit 3d831e68c9

View File

@ -57,8 +57,8 @@ export class RepoExecutors {
await execAsync(cloneCommand);
// Chmod the repo folder to 777
this.logger.info(`Executing: chmod -R 777 ${repoPath}`);
await execAsync(`chmod -R 777 ${repoPath}`);
this.logger.info(`Executing: chmod -R 755 ${repoPath}`);
await execAsync(`chmod -R 755 ${repoPath}`);
this.logger.info(`Cloned repo ${repoUrl} to ${repoPath}`);
return { success: true, message: '' };