Skip to content

Commit a9c0540

Browse files
authored
Download tproxy to tools directory (#225)
* download tproxy Signed-off-by: cwen0 <[email protected]> * fix makeflie Signed-off-by: cwen0 <[email protected]> Signed-off-by: cwen0 <[email protected]>
1 parent 55b454f commit a9c0540

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,15 @@ ifeq (,$(wildcard bin/tools/byteman))
9090
mv ${BYTEMAN_DIR} ./bin/tools/byteman
9191
endif
9292
ifeq (,$(wildcard bin/tools/memStress))
93-
curl -fsSL -o memStress_v0.3-x86_64-linux-gnu.tar.gz https://github.com/chaos-mesh/memStress/releases/download/v0.3/memStress_v0.3-${ARCH}-linux-gnu.tar.gz
94-
tar zxvf memStress_v0.3-x86_64-linux-gnu.tar.gz
93+
curl -fsSL -o memStress_v0.3-${ARCH}-linux-gnu.tar.gz https://github.com/chaos-mesh/memStress/releases/download/v0.3/memStress_v0.3-${ARCH}-linux-gnu.tar.gz
94+
tar zxvf memStress_v0.3-${ARCH}-linux-gnu.tar.gz
9595
mv memStress ./bin/tools/memStress
9696
endif
97+
ifeq (,$(wildcard bin/tools/tproxy))
98+
curl -fsSL -o tproxy-${ARCH}.tar.gz https://github.com/chaos-mesh/chaos-tproxy/releases/download/v0.5.4/tproxy-${ARCH}.tar.gz
99+
tar zxvf tproxy-${ARCH}.tar.gz
100+
mv tproxy ./bin/tools/tproxy
101+
endif
97102

98103
swagger_spec:
99104
ifeq ($(SWAGGER),1)

0 commit comments

Comments
 (0)