From dbd6c90b59ca0374ab2c634ed77a4beda993a463 Mon Sep 17 00:00:00 2001 From: Mehdi BEN ABDALLAH Date: Wed, 26 Jun 2019 15:47:38 +0200 Subject: [PATCH] VTWO-14496 : download etcd binaries for the amd64 arch instead of arm ... --- scripts/download_etcd_binaries | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/download_etcd_binaries b/scripts/download_etcd_binaries index f0a9c71..b02dcdc 100755 --- a/scripts/download_etcd_binaries +++ b/scripts/download_etcd_binaries @@ -7,11 +7,11 @@ tmp_dir=$(mktemp -d) pushd "$tmp_dir" &> /dev/null -curl -sL "https://github.com/etcd-io/etcd/releases/download/$ETCD3_RELEASE_VERSION/etcd-$ETCD3_RELEASE_VERSION-linux-arm64.tar.gz" | tar -zxf - +curl -sL "https://github.com/etcd-io/etcd/releases/download/$ETCD3_RELEASE_VERSION/etcd-$ETCD3_RELEASE_VERSION-linux-amd64.tar.gz" | tar -zxf - mkdir -p $OUTPUT_DIR -mv etcd-$ETCD3_RELEASE_VERSION-linux-arm64/etcd $OUTPUT_DIR/ -mv etcd-$ETCD3_RELEASE_VERSION-linux-arm64/etcdctl $OUTPUT_DIR/ +mv etcd-$ETCD3_RELEASE_VERSION-linux-amd64/etcd $OUTPUT_DIR/ +mv etcd-$ETCD3_RELEASE_VERSION-linux-amd64/etcdctl $OUTPUT_DIR/ popd &> /dev/null