File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change 1010# A second call without this option will be needed for the change detection to work.
1111# This is helpful to decide if an operation should be done based on changes while waiting for its success to finally save the change state.
1212# --paths Comma-separated list of file- and directory-names that are used for calculating the hash based on their name and size.
13+ # --hashfile Path to the file that contains the hash for change detection. Default in environment variable CHANGE_DETECTION_HASH_FILE_PATH
1314
1415# Fail on any error ("-e" = exit on first error, "-o pipefail" exist on errors within piped commands)
1516set -o errexit -o pipefail
@@ -88,6 +89,7 @@ file_names_and_sizes() {
8889 -type d -name " node_modules" -prune -o \
8990 -type d -name " target" -prune -o \
9091 -type d -name " temp" -prune -o \
92+ -type d -name " .reports" -prune -o \
9193 -not -path " ${hashFilePath} " \
9294 -type f \
9395 -exec stat -f " %N %z" {} + \
You can’t perform that action at this time.
0 commit comments