From 668a28859539415b34bb5facceec2c1387114295 Mon Sep 17 00:00:00 2001 From: Christoph Blecker Date: Sun, 7 Apr 2019 12:08:41 -0700 Subject: [PATCH] Remove unneeded scripts --- Godeps/Readme | 5 ----- hack/make-rules/verify.sh | 2 -- hack/verify-godep-licenses.sh | 23 ----------------------- hack/verify-godeps.sh | 23 ----------------------- 4 files changed, 53 deletions(-) delete mode 100644 Godeps/Readme delete mode 100755 hack/verify-godep-licenses.sh delete mode 100755 hack/verify-godeps.sh diff --git a/Godeps/Readme b/Godeps/Readme deleted file mode 100644 index 4cdaa53d56d..00000000000 --- a/Godeps/Readme +++ /dev/null @@ -1,5 +0,0 @@ -This directory tree is generated automatically by godep. - -Please do not edit. - -See https://github.com/tools/godep for more information. diff --git a/hack/make-rules/verify.sh b/hack/make-rules/verify.sh index a3e80423317..06f1ce0decf 100755 --- a/hack/make-rules/verify.sh +++ b/hack/make-rules/verify.sh @@ -48,8 +48,6 @@ fi # Exclude vendor checks in certain cases, if they're running in a separate job. if [[ ${EXCLUDE_GODEP:-} =~ ^[yY]$ ]]; then EXCLUDED_PATTERNS+=( - "verify-godeps.sh" # runs in separate godeps job - "verify-godeps-licenses.sh" # runs in separate godeps job "verify-vendor.sh" # runs in separate godeps job "verify-vendor-licenses.sh" # runs in separate godeps job ) diff --git a/hack/verify-godep-licenses.sh b/hack/verify-godep-licenses.sh deleted file mode 100755 index 609eba4fab5..00000000000 --- a/hack/verify-godep-licenses.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bash - -# Copyright 2015 The Kubernetes Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -set -o errexit -set -o nounset -set -o pipefail - -KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. -echo "Deprecated, use verify-vendor-licenses.sh instead" -"${KUBE_ROOT}/hack/verify-vendor-licenses.sh" "$@" diff --git a/hack/verify-godeps.sh b/hack/verify-godeps.sh deleted file mode 100755 index f016302cee7..00000000000 --- a/hack/verify-godeps.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bash - -# Copyright 2015 The Kubernetes Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -set -o errexit -set -o nounset -set -o pipefail - -KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. -echo "Deprecated, use verify-vendor.sh instead" -"${KUBE_ROOT}/hack/verify-vendor.sh" "$@"