mirror of
https://github.com/overleaf/toolkit.git
synced 2025-04-19 15:28:06 +02:00
Fix shellcheck warning about quoting
This commit is contained in:
parent
dc4451d434
commit
d360999cc5
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ function check_docker_daemon() {
|
|||
}
|
||||
|
||||
function print_warnings() {
|
||||
if [[ -n "$(head -n 1 $WARNINGS_FILE)" ]]; then
|
||||
if [[ -n $(head -n 1 "$WARNINGS_FILE") ]]; then
|
||||
print_section_separator "Warnings"
|
||||
while read -r _line; do
|
||||
echo "! $_line"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue