7
0
mirror of https://github.com/marado/RNID.git synced 2025-01-22 02:09:35 +00:00

Depending on wget version, failure can be 1 or 2

Since success is always 0, check if result is greater than zero instead.
This commit is contained in:
Marcos Marado 2018-11-19 22:03:53 +00:00
parent 9a0d3a5953
commit 4990acb6d7
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
if [ ! "$(wget https://www.min-saude.pt/ -o -|grep cert|wc -l)" -eq "1" ]; then if [ ! "$(wget https://www.min-saude.pt/ -o -|grep cert|wc -l)" -gt "0" ]; then
echo "certificado min-saude: incumprimento pode já não existir"; echo "certificado min-saude: incumprimento pode já não existir";
else else
echo "certificado min-saude: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)"; echo "certificado min-saude: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";

View File

@ -2,7 +2,7 @@
maybeOK=0; maybeOK=0;
if [ ! "$(wget https://www.autarquicas2017.mai.gov.pt/ -o -|grep cert|wc -l)" -eq "1" ]; then if [ ! "$(wget https://www.autarquicas2017.mai.gov.pt/ -o -|grep cert|wc -l)" -gt "0" ]; then
echo "certificado autarquicas: incumprimento pode já não existir"; echo "certificado autarquicas: incumprimento pode já não existir";
maybeOK=1; maybeOK=1;
fi fi