mirror of
https://github.com/skoelle/icloud-contacts-sync.git
synced 2026-09-18 07:50:25 +00:00
8 lines
150 B
Bash
8 lines
150 B
Bash
#!/bin/sh
|
|
set -e
|
|
cd /app
|
|
echo "$(date -Is) - Sync-Lauf gestartet"
|
|
python3 /app/sync.py
|
|
echo "$(date -Is) - Sync-Lauf beendet"
|
|
touch /tmp/last_sync_ok
|