release script: remove check for

This commit is contained in:
Tomas Kral 2021-07-12 13:57:39 +02:00
parent deb00f3407
commit cfb16f2bfb

View File

@ -17,7 +17,6 @@
# Constants. Enter relevant repo information here.
UPSTREAM_REPO="kubernetes"
CLI="kompose"
GITPATH="$GOPATH/src/github.com/kubernetes/kompose"
usage() {
echo "This will prepare $CLI for release!"
@ -37,11 +36,6 @@ usage() {
requirements() {
if [ "$PWD" != "$GITPATH" ]; then
echo "ERROR: Must be in the $GITPATH directory"
exit 0
fi
if ! hash git 2>/dev/null; then
echo "ERROR: No git."
exit 0