Merge pull request #13397 from ClickHouse/ensure-submodules-from-proper-url

Ensure that all the submodules are from proper urls
This commit is contained in:
alesapin 2020-08-06 11:56:06 +03:00 committed by GitHub
commit 4c08fff0d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,3 +62,6 @@ find $ROOT_PATH/docs/ru -name '*.md' | xargs grep -l -F 'machine_translated: tru
# Tests should not be named with "fail" in their names. It makes looking at the results less convenient.
find $ROOT_PATH/tests/queries -iname '*fail*' | grep . && echo 'Tests should not be named with "fail" in their names. It makes looking at the results less convenient when you search for "fail" substring in browser.'
# All the submodules should be from https://github.com/
find $ROOT_PATH -name '.gitmodules' | while read i; do grep -F 'url = ' $i | grep -v -F 'https://github.com/' && echo 'All the submodules should be from https://github.com/'; done