We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25a7c6a commit 6ee9481Copy full SHA for 6ee9481
.github/workflows/test.yml
@@ -114,7 +114,7 @@ jobs:
114
run: |
115
curl -sS "http://localhost/data50k.json" --output data50k.json
116
if [ -f data50k.json ]; then
117
- status=$(diff data50k.json /usr/local/nginx/html/data50k.json)
+ diff data50k.json /usr/local/nginx/html/data50k.json > /dev/null
118
if [ $? -eq 0 ]; then
119
echo "OK"
120
else
@@ -129,7 +129,7 @@ jobs:
129
130
curl -sS "http://localhost/plugged.png" --output plugged.png
131
if [ -f plugged.png ]; then
132
- status=$(diff plugged.png /usr/local/nginx/html/plugged.png)
+ diff plugged.png /usr/local/nginx/html/plugged.png > /dev/null
133
134
135
0 commit comments