mirror of
https://github.com/sharkdp/bat
synced 2024-11-23 20:33:06 +00:00
7 lines
193 B
Bash
Executable file
Vendored
7 lines
193 B
Bash
Executable file
Vendored
#!/usr/bin/env bash
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
python="python3"
|
|
if ! command -v python3 &>/dev/null; then python="python"; fi
|
|
"$python" create_highlighted_versions.py -O highlighted
|