浏览代码

chmod +x extensions (#4956)

To ease adding custom extensions such as in https://github.com/FreshRSS/Extensions/issues/37#issuecomment-1363474585
Alexandre Alapetite 3 年之前
父节点
当前提交
7330cbab38
共有 1 个文件被更改,包括 3 次插入1 次删除
  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 "$@"