Skip to content

Commit

Permalink
Fix shellcheck finding
Browse files Browse the repository at this point in the history
  • Loading branch information
muhme committed Nov 13, 2024
1 parent 8b73d2e commit bd1358f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.31
2.0.32
4 changes: 2 additions & 2 deletions scripts/helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -564,9 +564,9 @@ function random_quote() {
if [ "${quote}" != "" ]; then
# Print the author only if it's not "Unknown" with authorID 0
if [ "$authorID" != "0" ]; then
printf "\\n \"${quote}\", ${author}\\n \\n"
printf "\\n \"%s\", %s\\n \\n" "${quote}" "${author}"
else
printf "\\n \"${quote}\"\\n \\n"
printf "\\n \"%s\"\\n \\n" "${quote}"
fi
fi
}
Expand Down

0 comments on commit bd1358f

Please sign in to comment.