mirror of
https://github.com/embarklabs/neo-blessed.git
synced 2025-01-10 02:55:46 +00:00
12 lines
203 B
Bash
Executable File
12 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
node test/tput.js "$@" | tee out
|
|
out=$(git diff --color=always --no-index test/terminfo out)
|
|
rm out
|
|
|
|
if test -n "$out"; then
|
|
echo "$out" | less -c -R
|
|
else
|
|
echo 'Files are identical.'
|
|
fi
|