This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Function to handle errors | |
handle_error() { | |
echo "Error: $1. Rolling back changes..." | |
restore_backup | |
exit 1 | |
} | |
# Function to create a backup of critical files (only if they exist) |