From 7674e6c19365c1032c89285a1c68d48ecd07da9d Mon Sep 17 00:00:00 2001
From: Sebastian Castro <sebastian.castro@protonmail.com>
Date: Tue, 4 May 2021 20:29:13 +0200
Subject: [PATCH] makefile: fix perms for uploads folder

---
 .gitignore           | 3 ++-
 Makefile             | 2 +-
 web/uploads/.gitkeep | 0
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 web/uploads/.gitkeep

diff --git a/.gitignore b/.gitignore
index 66e798515..3c69458fb 100755
--- a/.gitignore
+++ b/.gitignore
@@ -7,7 +7,8 @@
 .sass-cache
 *.DS_Store
 ssh_password
-/web/uploads/*
+/web/uploads/**
+!/web/uploads/**/.gitkeep
 *.csv
 *~
 .idea
diff --git a/Makefile b/Makefile
index 760c4656e..dc83f436c 100755
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,7 @@ warmup: ## Warmump the cache
 	$(SYMFONY) cache:warmup
 
 fix-perms: ## Fix permissions of all var files
-	chmod 777 -R var/
+	chmod 777 -R var/ web/uploads/
 
 install-assets: ## Install the assets
 	$(SYMFONY) assets:install web/ --symlink
diff --git a/web/uploads/.gitkeep b/web/uploads/.gitkeep
new file mode 100644
index 000000000..e69de29bb
-- 
GitLab