Browse Source

scripts/release: remove acbuild commands

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

+ 1 - 6
scripts/release

@@ -32,11 +32,6 @@ main() {
   MINOR_VERSION=$(echo "${VERSION}" | cut -d. -f 1-2)
   MINOR_VERSION=$(echo "${VERSION}" | cut -d. -f 1-2)
   BRANCH="release-${MINOR_VERSION}"
   BRANCH="release-${MINOR_VERSION}"
 
 
-  if ! command -v acbuild >/dev/null; then
-    echo "cannot find acbuild"
-    exit 1
-  fi
-
   if ! command -v docker >/dev/null; then
   if ! command -v docker >/dev/null; then
     echo "cannot find docker"
     echo "cannot find docker"
     exit 1
     exit 1
@@ -88,7 +83,7 @@ main() {
       echo "Updating version from ${source_version} to ${VERSION} in version/version.go"
       echo "Updating version from ${source_version} to ${VERSION} in version/version.go"
       sed -i "s/${source_version}/${VERSION}/g" version/version.go
       sed -i "s/${source_version}/${VERSION}/g" version/version.go
     fi
     fi
-    
+
     echo "Building etcd and checking --version output"
     echo "Building etcd and checking --version output"
     ./build
     ./build
     local etcd_version=$(bin/etcd --version | grep "etcd Version" | awk '{ print $3 }')
     local etcd_version=$(bin/etcd --version | grep "etcd Version" | awk '{ print $3 }')