mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
12 lines
409 B
Bash
Executable File
12 lines
409 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# We check only our code, that's why we skip contrib
|
|
GIT_ROOT=$(git rev-parse --show-cdup)
|
|
GIT_ROOT=${GIT_ROOT:-.}
|
|
VERSION=$(sed -e '1 s/^v//; 1 s/-.*//p; d' "$GIT_ROOT"/utils/list-versions/version_date.tsv)
|
|
|
|
find "$GIT_ROOT/docker/keeper/" "$GIT_ROOT/docker/server/" -name 'Dockerfile.*' -print0 | \
|
|
xargs -0 sed -i --follow-symlinks "/^ARG VERSION=/ s/^.*$/ARG VERSION=\"$VERSION\"/"
|