From 0321577cc3d4b4d4e742158d271dd550681d9502 Mon Sep 17 00:00:00 2001 From: David Vaughan Date: Mon, 21 Mar 2022 21:13:56 -0700 Subject: [PATCH] Fix a couple tab lengths (cast) --- misc/userscripts/cast | 6 +++--- 1 file 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