Skip to content
Snippets Groups Projects
Unverified Commit 9dffec38 authored by Paul Rosenzweig's avatar Paul Rosenzweig Committed by GitHub
Browse files

include html in bin/build-for-test hash (#11996)

parent d411f304
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ source-hash() {
# hash all the files that might change a backend-only uberjar build (for integration tests)
(
find src project.clj resources/sample-dataset.db.mv.db -type f -print0 | xargs -0 shasum ;
find resources -type f \( -iname \*.clj -o -iname \*.edn -o -iname \*.yaml -o -iname \*.properties \) -not -name "version.properties" -print0 | xargs -0 shasum ;
find resources -type f \( -iname \*.clj -o -iname \*.edn -o -iname \*.yaml -o -iname \*.properties -o -iname \*.html \) -not -name "version.properties" -print0 | xargs -0 shasum ;
) | shasum | awk '{ print $1 }'
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment