mirror of
https://github.com/Jeuners/tgrep-ai-skill.git
synced 2026-09-09 15:02:36 +02:00
9 lines
331 B
Bash
Executable file
9 lines
331 B
Bash
Executable file
#!/bin/sh
|
|
# Run from a reviewed checkout; no administrator privileges needed.
|
|
set -eu
|
|
SCRIPT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
|
if ! command -v python3 >/dev/null 2>&1; then
|
|
echo 'Python 3.10+ is required. Install it, then rerun ./install.sh.' >&2
|
|
exit 2
|
|
fi
|
|
exec python3 "$SCRIPT_DIR/scripts/install.py" "$@"
|