"rm -f" to clean temp files

This commit is contained in:
Jérémy Lecour 2022-03-31 21:10:55 +02:00 committed by Jérémy Lecour
parent 15e35ae8c4
commit f7b31627c5

View file

@ -149,7 +149,7 @@ source_file_or_error() {
cat "${tmpfile}"
exit 1
fi
rm "${tmpfile}"
rm -f "${tmpfile}"
}
source_configuration() {
if ! test -f ${config_file}; then
@ -194,7 +194,7 @@ source_configuration() {
grep -E "^\s*[_a-zA-Z0-9]+=" "${config_file}" > "${tmp_config_file}"
source_file_or_error "${tmp_config_file}"
rm "${tmp_config_file}"
rm -f "${tmp_config_file}"
else
source_file_or_error "${config_file}"
fi