File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ if [ "$PWD" != "$ROOTDIR" ]; then
13
13
fi
14
14
15
15
get_docker_md5 () {
16
- docker_md5=$( find build .github/data/version.txt -type f ! -name " *.md" -exec md5sum {} + | LC_ALL=C sort | md5sum | awk ' { print $1 }' )
16
+ docker_md5=$( find build .github/data/version.txt internal/configs/njs internal/configs/oidc -type f ! -name " *.md" -exec md5sum {} + | LC_ALL=C sort | md5sum | awk ' { print $1 }' )
17
17
echo " ${docker_md5: 0: 8} "
18
18
}
19
19
20
20
get_go_code_md5 () {
21
- find . -type f \( -name " *.go" -o -name go.mod -o -name go.sum -o -name " *.tmpl" -o -name " version.txt" -o -name " *.js " -o -name " *.conf " \) -not -path " ./site*" -exec md5sum {} + | LC_ALL=C sort | md5sum | awk ' { print $1 }'
21
+ find . -type f \( -name " *.go" -o -name go.mod -o -name go.sum -o -name " *.tmpl" -o -name " version.txt" \) -not -path " ./site*" -exec md5sum {} + | LC_ALL=C sort | md5sum | awk ' { print $1 }'
22
22
}
23
23
24
24
get_tests_md5 () {
You can’t perform that action at this time.
0 commit comments