summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Vaughan <david@davidv.xyz>2022-03-21 21:13:56 -0700
committerDavid Vaughan <david@davidv.xyz>2022-03-21 21:13:56 -0700
commit0321577cc3d4b4d4e742158d271dd550681d9502 (patch)
tree5aef27cbae82e5d487f4f3787f49c17db46c4444
parent065edd67fa86f150272301b6f57ccddf3a06fc6d (diff)
downloadqutebrowser-0321577cc3d4b4d4e742158d271dd550681d9502.tar.gz
qutebrowser-0321577cc3d4b4d4e742158d271dd550681d9502.zip
Fix a couple tab lengths (cast)
-rwxr-xr-xmisc/userscripts/cast6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/userscripts/cast b/misc/userscripts/cast
index ccbc78747..609a7d0db 100755
--- a/misc/userscripts/cast
+++ b/misc/userscripts/cast
@@ -145,8 +145,8 @@ cast_program=$(command -v castnow)
# pick a ytdl program
for p in "$QUTE_CAST_YTDL_PROGRAM" yt-dlp youtube-dl; do
- ytdl_program=$(command -v -- "$p")
- [ "$ytdl_program" == "" ] || break
+ ytdl_program=$(command -v -- "$p")
+ [ "$ytdl_program" == "" ] || break
done
if [[ "${cast_program}" == "" ]]; then
@@ -154,7 +154,7 @@ if [[ "${cast_program}" == "" ]]; then
exit 1
fi
if [[ "${ytdl_program}" == "" ]]; then
- msg error "youtube-dl or a drop-in replacement can't be found in PATH, and no installed program "\
+ msg error "youtube-dl or a drop-in replacement can't be found in PATH, and no installed program "\
"specified in QUTE_CAST_YTDL_PROGRAM (currently \\\"$QUTE_CAST_YTDL_PROGRAM\\\")"
exit 1
fi