mirror of
https://github.com/sharkdp/bat.git
synced 2025-02-15 09:28:26 +00:00
15 lines
203 B
Bash
15 lines
203 B
Bash
|
#!/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
|