Remove extra newline at the end of the GIFs

This commit is contained in:
Jake Wharton 2023-01-18 16:37:27 -05:00 committed by Jake Wharton
parent 5cea4425ce
commit f8eb590dac
4 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 173 KiB

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 61 KiB

View File

@ -23,7 +23,7 @@ for sample in $REPO_DIR/samples/*; do
if test -f "$sample_bin"; then
echo "Capturing $sample_name..."
command="'$sample_bin' 2>/dev/null && sleep 2 && echo"
command="'$sample_bin' 2>/dev/null && sleep 2 && printf ' \e[D'"
if [ -f "$sample/input.sh" ]; then
command="'$sample/input.sh' | $command"
fi