Merge pull request #52360 from ClickHouse/tavplubix-patch-8

Update 01606_git_import.sh
This commit is contained in:
Alexander Tokmakov 2023-07-20 15:51:05 +03:00 committed by GitHub
commit 0e89c5f95c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ cd $CLICKHOUSE_TMP || exit
# Protection for network errors
for _ in {1..10}; do
rm -rf ./clickhouse-odbc
git clone --quiet https://github.com/ClickHouse/clickhouse-odbc.git && pushd clickhouse-odbc > /dev/null && git checkout --quiet 5d84ec591c53cbb272593f024230a052690fdf69 && break
git clone --quiet https://github.com/ClickHouse/clickhouse-odbc.git && pushd clickhouse-odbc 2> /dev/null > /dev/null && git checkout --quiet 5d84ec591c53cbb272593f024230a052690fdf69 && break
sleep 1
done