Explorar el Código

chmod +x extensions (#4956)

To ease adding custom extensions such as in https://github.com/FreshRSS/Extensions/issues/37#issuecomment-1363474585
Alexandre Alapetite hace 3 años
padre
commit
7330cbab38
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      Docker/entrypoint.sh

+ 3 - 1
Docker/entrypoint.sh

@@ -58,6 +58,8 @@ if [ -n "$FRESHRSS_USER" ]; then
 fi
 
 chown -R :www-data .
-chmod -R g+r . && chmod -R g+w ./data/
+chmod -R g+r .
+chmod -R g+w ./data/
+chmod g+x ./extensions/
 
 exec "$@"