mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
12 lines
201 B
Bash
Executable File
Vendored
12 lines
201 B
Bash
Executable File
Vendored
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
WORKDIR=$(dirname "$0")
|
|
WORKDIR=$(readlink -f "${WORKDIR}")
|
|
|
|
"$WORKDIR/sparse-checkout/setup-sparse-checkout.sh"
|
|
git submodule init
|
|
git submodule sync
|
|
git submodule update --depth=1
|