Remove exectuable bit from erb files during package building

This commit is contained in:
Kienan Stewart 2018-12-04 20:27:52 -05:00
parent 56f5aca6c2
commit 131c7ba5be
1 changed files with 4 additions and 0 deletions

4
debian/rules vendored
View File

@ -7,3 +7,7 @@ export DH_RUBY = --gem-install
%: %:
dh $@ --buildsystem=ruby --with ruby dh $@ --buildsystem=ruby --with ruby
override_dh_auto_install:
dh_auto_install
find $(CURDIR) -iname "*.erb" -and -executable -exec chmod -x {} +