Skip to content

Commit

Permalink
Merge pull request #11677 from camptocamp/backport/11675-to-2.9
Browse files Browse the repository at this point in the history
[Backport 2.9] Don't have permissing error messages on advance application
  • Loading branch information
sbrunner authored Jan 30, 2025
2 parents 451fe27 + f3a0564 commit 3dc80ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/eval-templates
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,11 @@ if [ -d /app/geomapfishapp_geoportal/ ]; then
if [ -f "/etc/geomapfish/${name}.py" ]; then
echo "Get: ${name}.py"
cp "/etc/geomapfish/${name}.py" /app/geomapfishapp_geoportal/
chmod go-w "/app/geomapfishapp_geoportal/${name}.py"
fi
done
fi

chmod go-w -R /app/*_geoportal/ || true
chmod go-w -R /app/*_geoportal/ 2> /dev/null || true

exec "$@"

0 comments on commit 3dc80ae

Please sign in to comment.