Skip to content
Snippets Groups Projects
Commit 6d3c7d7a authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Check mk/validate.mk exists before we try grepping it

parent 6fa9dc6d
No related branches found
No related tags found
No related merge requests found
...@@ -146,7 +146,7 @@ the minimal testing procedure, please do further testing as necessary. ...@@ -146,7 +146,7 @@ the minimal testing procedure, please do further testing as necessary.
When you are satisfied that you haven't broken anything, go ahead and When you are satisfied that you haven't broken anything, go ahead and
push/send your patches. push/send your patches.
EOF EOF
if grep -q "^[^#]" mk/validate.mk if [ -f mk/validate.mk ] && grep -q "^[^#]" mk/validate.mk
then then
cat <<EOF cat <<EOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment