Skip to content

Commit

Permalink
Fix reproducibility - explicit umask set
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarek committed Dec 28, 2020
1 parent 01ec3f6 commit b6768cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ install-custom::
@install -p -m 0755 qubesctl $(DESTDIR)$(BINDIR)

# Install /etc/salt/* and /srv/*
cp -Tr etc $(DESTDIR)/etc
cp -Tr srv $(DESTDIR)/srv
umask 022; cp -Tr etc $(DESTDIR)/etc
umask 022; cp -Tr srv $(DESTDIR)/srv

.PHONY: install-vm
install-vm:
Expand Down

0 comments on commit b6768cd

Please sign in to comment.