5 lines
165 B
Bash
5 lines
165 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
BASE_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
exec "$BASE_DIR/.venv/bin/python3" "$BASE_DIR/alice_plugin.py" stations-refresh "$@"
|