Add some missing trailing dots

This commit is contained in:
rmm 2024-06-16 13:19:34 +02:00
parent fd56c8882d
commit 046354d5d1

View File

@ -791,7 +791,7 @@ function restart_proxy {
function save_sensors_data { function save_sensors_data {
# Check if DEBUG_SAVE_PATH exists and is writable # Check if DEBUG_SAVE_PATH exists and is writable
if [[ ! -d "$DEBUG_SAVE_PATH" || ! -w "$DEBUG_SAVE_PATH" ]]; then if [[ ! -d "$DEBUG_SAVE_PATH" || ! -w "$DEBUG_SAVE_PATH" ]]; then
err "Directory $DEBUG_SAVE_PATH does not exist or is not writable. No file could be saved" err "Directory $DEBUG_SAVE_PATH does not exist or is not writable. No file could be saved."
return return
fi fi
@ -806,14 +806,14 @@ function save_sensors_data {
case "$choice" in case "$choice" in
[yY]) [yY])
sensors -j >"$filepath" sensors -j >"$filepath"
msgb "Sensors data saved in $filepath" msgb "Sensors data saved in $filepath."
;; ;;
*) *)
warn "Operation cancelled by user." warn "Operation cancelled by user."
;; ;;
esac esac
else else
err "Sensors is not installed. No file could be saved" err "Sensors is not installed. No file could be saved."
fi fi
} }