From b969086eabd5f128aa0b838950b0121db47e1934 Mon Sep 17 00:00:00 2001 From: seamus-45 Date: Wed, 7 Oct 2020 16:01:07 +0500 Subject: [PATCH] fixed: install themes with proper access mode --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 0c97166..3fe25d9 100755 --- a/install.sh +++ b/install.sh @@ -19,17 +19,17 @@ do if [ x$answer = x"y" ] then echo "+Installing '${themefile}'" - install "${themefile}" "${DIRECTORY}" + install -m 0644 "${themefile}" "${DIRECTORY}" elif [ x${answer} = x"a" ] then ia=1 echo "+Installing '${themefile}'" - install "${themefile}" "${DIRECTORY}" + install -m 0644 "${themefile}" "${DIRECTORY}" else echo "+Skipping ${themefile}" fi else echo "+Installing '${themefile}'" - install "${themefile}" "${DIRECTORY}" + install -m 0644 "${themefile}" "${DIRECTORY}" fi done