kamalgill / flask-appengine-template

Boilerplate project template for running Flask on Google App Engine -- supplanted by https://github.com/kamalgill/cloud-starterkit-flask-appengine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remove executable bits from Werkzeug library

kamalgill opened this issue · comments

Many of the files in the Werkzeug package are set to 755. Batch process them with the following to remove the exec bits.

 find . -type f -print | xargs chmod 644