Skip to content

Commit

Permalink
Fix permissions on html assets
Browse files Browse the repository at this point in the history
Set mode to 644 instead of 755 (simple files, no executables).
  • Loading branch information
super7ramp committed Jul 15, 2018
1 parent 9a60f0d commit 1d25531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -38,7 +38,7 @@ install:
$(INSTALL) -d $(DESTDIR)$(docdir)
$(INSTALL) -m644 intro.html $(DESTDIR)$(docdir)
$(INSTALL) -d $(DESTDIR)$(docdir)/html_assets
$(INSTALL) -m755 html_assets/* $(DESTDIR)$(docdir)/html_assets
$(INSTALL) -m644 html_assets/* $(DESTDIR)$(docdir)/html_assets
$(INSTALL) -m644 README $(DESTDIR)$(docdir)
$(INSTALL) -m644 NEWS $(DESTDIR)$(docdir)
$(INSTALL) -m644 TODO $(DESTDIR)$(docdir)
Expand Down

0 comments on commit 1d25531

Please sign in to comment.