mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-17 10:22:56 +00:00
13 lines
223 B
Bash
Executable File
13 lines
223 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# usage: poetry run -- ./run.bash scraper.env ARGS...
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
source "$1"
|
|
shift
|
|
|
|
self="${BASH_SOURCE[0]}"
|
|
dir="$(dirname "$self")"
|
|
scraper="$dir/scraper.py"
|
|
exec python "$scraper" "$@"
|