From 990942212fe5f02be99f823870bc53fe4c98e548 Mon Sep 17 00:00:00 2001 From: Ducky Date: Tue, 2 Apr 2024 00:02:00 +0100 Subject: [PATCH] sh.zio.backup: prototyping --- usr/local/bin/sh.zio.backup | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/usr/local/bin/sh.zio.backup b/usr/local/bin/sh.zio.backup index f025e38..45c7f5c 100755 --- a/usr/local/bin/sh.zio.backup +++ b/usr/local/bin/sh.zio.backup @@ -140,7 +140,7 @@ function invoke_script() { if [[ "$script_result" == 0 ]]; then trigger_notify "success" "Backup script succeeded: $backup_script_name" "$script_log_path" else - trigger_notify "error" "Backup script failed: $backup_script_name" "$(cat "$script_error_log_path")" "$script_log_path" + trigger_notify "error" "Backup script failed: $backup_script_name" "$(cat "$script_error_log_path" | sed -e "s/\`/'/g")" "$script_log_path" fi rm -f "$script_error_log_path" @@ -164,7 +164,6 @@ function trigger_notify() { if [[ ! -f "$notify_prog" ]]; then say warning "'$notify_prog' not found. Not sending notification" else - #message="$(echo $message | sed -e "s/\`/\\\`/g")" "$notify_prog" \ --file "$log_path" \ --level "$level" \