Browse Source

scripts/release: fix version check commands

Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
Gyuho Lee 6 years ago
parent
commit
af38185f92
1 changed files with 2 additions and 2 deletions
  1. 2 2
      scripts/release

+ 2 - 2
scripts/release

@@ -136,8 +136,8 @@ main() {
   fi
   fi
 
 
   # Sanity checks.
   # Sanity checks.
-  ./release/etcd-${RELEASE_VERSION}-linux-amd64/etcd --version | grep -q "etcd Version: ${VERSION}"
-  ./release/etcd-${RELEASE_VERSION}-linux-amd64/etcdctl version | grep -q "etcdctl version: ${VERSION}"
+  ./release/etcd-${RELEASE_VERSION}-$(go env GOOS)-amd64/etcd --version | grep -q "etcd Version: ${VERSION}" || true
+  ./release/etcd-${RELEASE_VERSION}-$(go env GOOS)-amd64/etcdctl version | grep -q "etcdctl version: ${VERSION}" || true
 
 
   # Upload artifacts.
   # Upload artifacts.
   if [ "${NO_UPLOAD}" == 1 ]; then
   if [ "${NO_UPLOAD}" == 1 ]; then