5 lines
164 B
Bash
Executable File
5 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
# Thin wrapper: run the granthi-sync client from anywhere.
|
|
DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
exec python3 "$DIR/client/granthi_sync_client.py" "$@"
|