You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
404 B
12 lines
404 B
#!/bin/bash
|
|
PROJECT_DIR="/home/alialavi/projects/habib/marriage"
|
|
cd "$PROJECT_DIR" || exit 1
|
|
|
|
echo "[$(date -u +"%Y-%m-%d %H:%M:%S UTC")] Starting Marriage Staging Auto-Deploy Watcher (interval: 30s)..."
|
|
|
|
while true; do
|
|
"$PROJECT_DIR/auto_deploy_staging.sh" || {
|
|
echo "[$(date -u +"%Y-%m-%d %H:%M:%S UTC")] Auto-deploy encountered an error, will retry in next cycle."
|
|
}
|
|
sleep 30
|
|
done
|