check_source.sh: handle case if there are no files to check
authorAndrey Skvortsov <andrej.skvortzov@gmail.com>
Sat, 09 Jun 2018 17:59:46 +0300
changeset 2183 63591802d3e2
parent 2182 eeca1aff0691
child 2184 bbd2364fbf71
check_source.sh: handle case if there are no files to check
tests/tools/check_source.sh
--- a/tests/tools/check_source.sh	Sat Jun 09 17:14:56 2018 +0300
+++ b/tests/tools/check_source.sh	Sat Jun 09 17:59:46 2018 +0300
@@ -322,7 +322,11 @@
             echo "Only changes will be checked"
             echo ""
             py_files=$(hg status -m -a -n -I '**.py')
-        fi
+            if [ -z "$py_files" ]; then
+                echo "No files to check"
+                exit 0;
+            fi
+       fi
     fi
 }