fix: run umask 022 at launch (#538)

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
dw-0
2024-09-21 21:01:19 +02:00
committed by GitHub
parent 975629f097
commit df414ce37e

View File

@@ -12,6 +12,9 @@
set -e
clear
# make sure we have the correct permissions while running the script
umask 022
### sourcing all additional scripts
KIAUH_SRCDIR="$(dirname -- "$(readlink -f "${BASH_SOURCE[0]}")")"
for script in "${KIAUH_SRCDIR}/scripts/"*.sh; do . "${script}"; done