aboutsummaryrefslogtreecommitdiff
path: root/pirowatch
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-03-20 17:17:12 +0530
committersinanmohd <sinan@firemail.cc>2023-03-20 17:17:12 +0530
commitc64fd9b62dc40008898b238dc5061490594e2ca7 (patch)
treee85b0fc3a1a3f56bedf2a0813d7562c35bded709 /pirowatch
parent605cedbc0477904d489cbeeab70ed12e81effb49 (diff)
clean: use logical operators instead of if
Diffstat (limited to 'pirowatch')
-rwxr-xr-xpirowatch4
1 files changed, 1 insertions, 3 deletions
diff --git a/pirowatch b/pirowatch
index 9ac6eae..02f6198 100755
--- a/pirowatch
+++ b/pirowatch
@@ -55,9 +55,7 @@ stream() {
webtorrent --mpv -o "$cache_dir" --torrent-port "$torrent_port" --dht-port "$dht_port" "$1" --select "$2"
else
webtorrent --mpv -o "$cache_dir" --torrent-port "$torrent_port" --dht-port "$dht_port" "$1"
- fi
-
- [ "$?" != 0 ] &&
+ fi ||
die "webtorrent failed to play"
}