mirror of
https://github.com/rancher/rke.git
synced 2025-06-23 14:07:13 +00:00
13 lines
182 B
Bash
Executable File
13 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source $(dirname $0)/version
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
ARCH=${ARCH:-"amd64"}
|
|
SUFFIX=""
|
|
[ "${ARCH}" != "amd64" ] && SUFFIX="_${ARCH}"
|
|
|
|
./scripts/create-releasenote.sh
|