This commit is contained in:
Marc Beninca 2024-12-01 17:47:06 +01:00
parent d549d03c99
commit 038853e4bb
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -2,7 +2,7 @@ rwx_file_write() {
local file="${1}"
local text="${2}"
if [ -n "${file}" ]; then
printf "%s" "${text}" > "${file}"
printf "%s" "${text}" >"${file}"
fi
}