mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-02 21:01:01 +01:00
8 lines
193 B
Bash
Executable File
Vendored
8 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
|