Badal commited on
Commit ·
b1e7a02
1
Parent(s): 8b50616
Fix: Use --quiet flag with 1 sec delay for reliable sync
Browse files- entrypoint.sh +3 -2
entrypoint.sh
CHANGED
|
@@ -49,6 +49,7 @@ while true; do
|
|
| 49 |
exit 1
|
| 50 |
fi
|
| 51 |
|
| 52 |
-
# Real-time continuous sync (
|
| 53 |
-
hf sync "$SOURCE" "$BUCKET" --delete
|
|
|
|
| 54 |
done
|
|
|
|
| 49 |
exit 1
|
| 50 |
fi
|
| 51 |
|
| 52 |
+
# Real-time continuous sync (1 sec delay + quiet mode)
|
| 53 |
+
hf sync "$SOURCE" "$BUCKET" --delete --quiet
|
| 54 |
+
sleep 1
|
| 55 |
done
|