From 74ece549fff27394ca04322e72488d3ed3a713ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Tue, 23 Dec 2025 15:24:13 +0100 Subject: [PATCH] Fix double-quote warning. --- invid-conv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/invid-conv b/invid-conv index bb47644..5f5fb55 100755 --- a/invid-conv +++ b/invid-conv @@ -22,7 +22,7 @@ # 3. This notice may not be removed or altered from any source # distribution. -YT_URL=$1 +YT_URL="$1" INVID_BASE="https://inv.nadeko.net" if [[ $YT_URL == *"youtu.be"* ]] @@ -33,4 +33,4 @@ then INVID_URL="${INVID_BASE}/${YT_URL##*/}" fi -echo $INVID_URL +echo "$INVID_URL"