From bea1581257e9309d1d9f1caab9de333750357e85 Mon Sep 17 00:00:00 2001 From: Rien Maertens Date: Wed, 6 May 2020 14:47:37 +0200 Subject: [PATCH] Fix formatting --- reStream.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reStream.sh b/reStream.sh index 685389c..0c3c810 100755 --- a/reStream.sh +++ b/reStream.sh @@ -105,7 +105,7 @@ fi if [ -z "$compress" ]; then echo "Your remarkable does not have lz4." fallback_to_gzip -elif ! lz4 -V > /dev/null; then +elif ! lz4 -V >/dev/null; then echo "Your host does not have lz4." fallback_to_gzip else @@ -114,7 +114,7 @@ fi # use pv to measure throughput if desired, else we just pipe through cat if $measure_throughput; then - if ! pv --version > /dev/null; then + if ! pv --version >/dev/null; then echo "You need to install pv to measure data throughput." exit 1 else