6 lines
224 B
Bash
Executable File
6 lines
224 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Wrapper to run the AVA converter script
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
TOOLS_DIR="/home/wdjones/.openclaw/workspace/tools"
|
|
python3 "$TOOLS_DIR/ava-converter.py" --output "$SCRIPT_DIR" "$@"
|