fix: less loose permissions, less +x

Closes coop-cloud/organising#283.
This commit is contained in:
2021-12-05 01:18:31 +01:00
parent 9be78bc5fa
commit 7d8f3f1fab
5 changed files with 5 additions and 5 deletions

View File

@ -61,7 +61,7 @@ The new example repository is cloned to ~/.abra/apps/<recipe>.
path.Join(config.APPS_DIR, recipeName, ".drone.yml"),
}
for _, path := range toParse {
file, err := os.OpenFile(path, os.O_RDWR, 0755)
file, err := os.OpenFile(path, os.O_RDWR, 0644)
if err != nil {
logrus.Fatal(err)
}