File size: 732 Bytes
993a996
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@echo off
echo ===================================================
echo               Saving Local Backup              
echo ===================================================
cd /d "%~dp0"

echo 1. Committing current working state to Git...
git add .
git commit -m "Backup: notification sound is working perfectly"

echo.
echo 2. Creating a separate backup folder on your Desktop...
set BACKUP_DIR="%~dp0..\RAG_backup_working_audio"
mkdir %BACKUP_DIR% 2>nul
xcopy "%~dp0*.*" %BACKUP_DIR%\ /E /I /H /Y

echo.
echo ===================================================
echo Done! 
echo 1. Your changes are safely committed in Git.
echo 2. A full copy of this folder has been saved to your Desktop as "RAG_backup_working_audio".
pause