add istio patch to fix xds push (#52)

This commit is contained in:
澄潭
2022-11-11 18:10:28 +08:00
committed by GitHub
parent 33a8573dba
commit 4d707e960d
2 changed files with 141 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ for repo in ${envoy_repos[@]}; do
continue
fi
cp -r envoy/${ENVOY_VERSION}/$repo external/$repo
for patch in `ls -f envoy/${ENVOY_VERSION}/patches/$repo/*.patch`; do
for patch in `ls envoy/${ENVOY_VERSION}/patches/$repo/*.patch`; do
patch -d external/$repo -p1 < $patch
done
cd external/$repo
@@ -34,7 +34,7 @@ for repo in ${istio_repos[@]}; do
continue
fi
cp -r istio/${ISTIO_VERSION}/$repo external/$repo
for patch in `ls -f istio/${ISTIO_VERSION}/patches/$repo/*.patch`; do
for patch in `ls istio/${ISTIO_VERSION}/patches/$repo/*.patch`; do
patch -d external/$repo -p1 < $patch
done
cd external/$repo