Skip to content

Commit 4399ee9

Browse files
author
Marc Stern
committed
Fixed quotes
1 parent 8723294 commit 4399ee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: sudo systemctl restart apache2.service
5252
- name: Search for errors/warnings in error log
5353
run: |
54-
errors="$(grep -E ":(?error|warn)[]]" /var/log/apache2/error.log)"
54+
errors=$(grep -E ':(?error|warn)[]]' /var/log/apache2/error.log)
5555
if [ -n "${errors}" ]; then
5656
echo "Found errors/warnings in error.log"
5757
echo "${errors}"

0 commit comments

Comments
 (0)