2020-07-27 19:31:16 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-09-16 14:05:51 +00:00
|
|
|
# Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
2020-08-07 00:30:18 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2020-08-25 01:07:34 +00:00
|
|
|
|
2020-07-27 19:31:16 +00:00
|
|
|
set -euo pipefail
|
2020-08-25 01:07:34 +00:00
|
|
|
|
2020-08-12 00:48:16 +00:00
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
2020-07-07 19:35:20 +00:00
|
|
|
|
2020-08-24 19:09:35 +00:00
|
|
|
xargs "$ROOT/hack/lib/verify-codegen.sh" < "${ROOT}/hack/lib/kube-versions.txt"
|
2020-08-07 00:30:18 +00:00
|
|
|
"$ROOT/hack/module.sh" lint
|