This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| is_pkgbug_includes() { | |
| if echo "$1" | tail -1 | grep -q "this is probably fixable by adding ‘#include"; then | |
| return 0 | |
| elif echo "$1" | head -1 | grep -q "use of undeclared identifier 'uint64_t'"; then | |
| return 0 | |
| fi | |
| return 1 | |
| } |
OlderNewer