From 52fed194e70723d9acffbabb6a3e53f398d5dadb Mon Sep 17 00:00:00 2001 From: Miraty Date: Sat, 27 Aug 2022 04:52:52 +0200 Subject: [PATCH] Fix css/ permissions --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 689c83f..d74a579 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -9,6 +9,6 @@ libreqr_apply_filesystem_permissions() { find "$final_path" -type f -name "*.css" -exec chown $app:www-data "{}" + find "$final_path" -type f -name "*.less" -exec chmod 440 "{}" + find "$final_path" -type f -name "*.less" -exec chown $app:www-data "{}" + - chmod 550 "$final_path"/css + chmod 750 "$final_path"/css chown $app:www-data "$final_path"/css }