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