summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-03-31 11:41:30 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-03-31 11:41:30 +0200
commitf654c0fdfc21ebf7fc8f601a6800314bb570f226 (patch)
tree25d9d4bfb89e7fb19eec391c6396cfbb9945bdca
parent08fa205560f7267acf3ebe37294bc67666385324 (diff)
downloadqutebrowser-f654c0fdfc21ebf7fc8f601a6800314bb570f226.tar.gz
qutebrowser-f654c0fdfc21ebf7fc8f601a6800314bb570f226.zip
cast userscript: Fix error message
Avoid SC2140 shellcheck false-positive: https://github.com/koalaman/shellcheck/issues/2479 Also remove extra quoting
-rwxr-xr-xmisc/userscripts/cast4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/userscripts/cast b/misc/userscripts/cast
index 609a7d0db..ec703d5fb 100755
--- a/misc/userscripts/cast
+++ b/misc/userscripts/cast
@@ -154,8 +154,8 @@ 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 "\
-"specified in QUTE_CAST_YTDL_PROGRAM (currently \\\"$QUTE_CAST_YTDL_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