From 3bab46a4d2a63dd65d389f0161de72b0032d3bf3 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Mon, 8 Apr 2024 15:59:41 -0300 Subject: [PATCH] Fix umask --- libexec/portzap/portzap-pull | 2 +- libexec/portzap/portzap-setup | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/portzap/portzap-pull b/libexec/portzap/portzap-pull index b38fac0..bc8565a 100755 --- a/libexec/portzap/portzap-pull +++ b/libexec/portzap/portzap-pull @@ -6,7 +6,7 @@ gitdir=$1 ## # main -umask u=rwX,g=rX,o=rX +umask u=rwX,g=rX,o= if [ -e "${gitdir}/.git" ]; then set -x cd "${gitdir}" diff --git a/libexec/portzap/portzap-setup b/libexec/portzap/portzap-setup index 04b6516..9e75eb8 100755 --- a/libexec/portzap/portzap-setup +++ b/libexec/portzap/portzap-setup @@ -18,5 +18,5 @@ fi if ! grep -F "${conf}" "${doas}" > /dev/null 2>&1; then echo "${conf}" >> "${doas}" - echo "[ok] update ${doas}" + echo "[ok] modify ${doas}" fi