Do not fail if no http is found.

This commit is contained in:
Manuele Simi 2021-02-15 08:47:43 -05:00
parent e7cfcc8761
commit 3d055127e0
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
find . -name '*.java' -exec grep 'http://' /dev/null {} +
find . -name '*.java' -exec grep 'http://' /dev/null {} + || echo "No http found"