mirror of
https://github.com/sharkdp/bat.git
synced 2025-02-15 01:18:31 +00:00
15 lines
203 B
Bash
Executable File
15 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## test for issue 2561
|
|
|
|
OUTPUT=$(mktemp)
|
|
BAT=bat
|
|
code=$($BAT /tmp 2> $OUTPUT; cat $OUTPUT | grep error; echo $?)
|
|
|
|
if [[ $code == 1 ]]; then
|
|
echo "stderr test fsil"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|