1
0
Fork 0
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:
Shane Kilkelly 2020-06-03 09:34:44 +01:00
parent dc4451d434
commit d360999cc5

View file

@ -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"