From 11ceb46e4ad61978bdca6655a0c9a277990551b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 9 Jun 2026 06:04:09 +0200 Subject: [PATCH] chore(backup): replace emoji codes with actual Unicode emojis Co-Authored-By: Claude Sonnet 4.6 --- _backup/backup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_backup/backup.sh b/_backup/backup.sh index 55992e9..247a8e1 100755 --- a/_backup/backup.sh +++ b/_backup/backup.sh @@ -60,7 +60,7 @@ fi log "Running restic backup" if ! restic backup "$DATA_DIR" --tag stacks 2>&1 | tee -a "$LOG_FILE"; then log "FATAL: restic backup failed" - notify "#cc0000" ":x: **Backup failed** — restic backup error. Check \`$LOG_FILE\`." + notify "#cc0000" "❌ **Backup failed** — restic backup error. Check \`$LOG_FILE\`." exit 1 fi @@ -74,8 +74,8 @@ fi snapshot_info=$(restic snapshots --latest 1 --compact 2>/dev/null | tail -3 | head -1) repo_stats=$(restic stats 2>/dev/null | grep "Total Size" || true) -summary=":white_check_mark: **Backup complete**" -[ ${#dump_errors[@]} -gt 0 ] && summary+="\n:warning: Failed dumps: ${dump_errors[*]}" +summary="✅ **Backup complete**" +[ ${#dump_errors[@]} -gt 0 ] && summary+="\n⚠️ Failed dumps: ${dump_errors[*]}" summary+="\nLatest: \`$snapshot_info\`" [ -n "$repo_stats" ] && summary+="\nRepo: $repo_stats"