personal_scripts

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit a69d48b6437cb3650d9a1e417c1dc4e3ae685bd3
parent b34b975cacdde7aed02f1571b0369b59f6a99888
Author: mrgrouse <bdmfegys@duck.com>
Date:   Tue, 12 Nov 2024 19:31:18 -0500

Makefile: convert `chmod` commands to octal mode

Diffstat:
MMakefile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,10 +1,10 @@ INSTALLDIR=${HOME}/.local/bin install: cp arch-secure-boot.sh ${INSTALLDIR} - chmod +x ${INSTALLDIR}/arch-secure-boot.sh + chmod 674 ${INSTALLDIR}/arch-secure-boot.sh cp artix-install.sh ${INSTALLDIR} - chmod +x ${INSTALLDIR}/artix-install.sh + chmod 674 ${INSTALLDIR}/artix-install.sh cp upgrader.sh ${INSTALLDIR} - chmod +x ${INSTALLDIR}/upgrader.sh + chmod 674 ${INSTALLDIR}/upgrader.sh cp wall.sh ${INSTALLDIR} - chmod +x ${INSTALLDIR}/wall.sh + chmod 674 ${INSTALLDIR}/wall.sh