mirror of
https://github.com/sharkdp/bat
synced 2024-11-04 18:00:24 +00:00
16 lines
389 B
Bash
16 lines
389 B
Bash
|
#!/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"
|