From aa42fc9c4a2b66a1699730b970794239257b05a4 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Wed, 27 Jul 2022 15:23:36 -0500 Subject: [PATCH] Fix the permission of keyring files These are non-executables, they should be installed 644 rather than 755. Signed-off-by: Michel Alexandre Salim --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f60c5b7..b3d22c2 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ clean: rm -rf build install: build - install -vDm 755 $(KEYRING_FILES) -t $(KEYRING_TARGET_DIR) + install -vDm 644 $(KEYRING_FILES) -t $(KEYRING_TARGET_DIR) uninstall: rm -f $(KEYRING_TARGET_DIR)/archlinux{.gpg,-trusted,-revoked} -- 2.37.1