mirror of https://github.com/linkerd/linkerd2.git
13 lines
323 B
Bash
Executable File
13 lines
323 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
# Updates the tag for `runconduit/proxy-deps` across all Dockerfiles in this repository.
|
|
|
|
sha=$(. bin/_tag.sh ; proxy_deps_sha)
|
|
|
|
for f in $( grep -lR --include=Dockerfile\* proxy-deps: . ) ; do
|
|
sed -E -i.bak -e "s|runconduit/proxy-deps:[^ ]+|runconduit/proxy-deps:${sha}|" "$f"
|
|
rm "$f".bak
|
|
done
|