7 lines
232 B
Bash
Executable file
7 lines
232 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
echo "sync_loop.sh is deprecated; forwarding to scripts/changes_consumer.sh" >&2
|
|
exec "${ROOT_DIR}/scripts/changes_consumer.sh" "$@"
|