mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-02 12:51:01 +01:00
16 lines
389 B
Bash
Executable File
Vendored
16 lines
389 B
Bash
Executable File
Vendored
#!/bin/bash
|
|
|
|
set -eou pipefail
|
|
|
|
script_directory="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
output_directory=$(mktemp -d --suffix=.bat-syntax-regression-test)
|
|
|
|
"$script_directory"/create_highlighted_versions.py --output="$output_directory"
|
|
|
|
echo
|
|
|
|
"$script_directory"/compare_highlighted_versions.py \
|
|
"$script_directory/highlighted" \
|
|
"$output_directory"
|