mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 04:12:10 +03:00
9 lines
285 B
Bash
Executable File
9 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
# Wrapper for OmniRoute translation validator
|
|
# Provides easy CLI access to the Python validation script
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# Run the Python script with all arguments
|
|
exec python3 "$SCRIPT_DIR/scripts/validate_translation.py" "$@"
|