forked from karmada-io/karmada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverify-vendor.sh
executable file
·44 lines (35 loc) · 1.07 KB
/
verify-vendor.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
SCRIPT_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
DIFFROOT="${SCRIPT_ROOT}/vendor"
TMP_DIFFROOT="${SCRIPT_ROOT}/_tmp/vendor"
_tmp="${SCRIPT_ROOT}/_tmp"
cleanup() {
rm -rf "${_tmp}"
}
trap "cleanup" EXIT SIGINT
cleanup
mkdir -p "${TMP_DIFFROOT}"
cp -a "${DIFFROOT}"/* "${TMP_DIFFROOT}"
cp "${SCRIPT_ROOT}"/go.mod "$_tmp"/go.mod
cp "${SCRIPT_ROOT}"/go.sum "$_tmp"/go.sum
bash "${SCRIPT_ROOT}/hack/update-vendor.sh"
echo "diffing ${DIFFROOT} against freshly generated files"
govendor=0
diff -Naupr "${DIFFROOT}" "${TMP_DIFFROOT}" || govendor=$?
gomod=0
diff -Naupr "${SCRIPT_ROOT}"/go.mod "${_tmp}"/go.mod || gomod=$?
gosum=0
diff -Naupr "${SCRIPT_ROOT}"/go.sum "${_tmp}"/go.sum || gosum=$?
cp -a "${TMP_DIFFROOT}"/* "${DIFFROOT}"
cp "${_tmp}"/go.mod "${SCRIPT_ROOT}"/go.mod
cp "${_tmp}"/go.sum "${SCRIPT_ROOT}"/go.sum
if [[ $govendor -eq 0 && $gomod -eq 0 && $gosum -eq 0 ]]
then
echo "${DIFFROOT} up to date."
else
echo "${DIFFROOT}, 'go.mod' or 'go.sum' is out of date. Please run hack/update-vendor.sh"
exit 1
fi