You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ARTIFACTS_CHANGE_DETECTION_HASH_FILE=${ARTIFACTS_CHANGE_DETECTION_HASH_FILE:-"artifactsChangeDetectionHash.txt"}# !DEPRECATED! Use CHANGE_DETECTION_HASH_FILE.
20
20
CHANGE_DETECTION_HASH_FILE=${CHANGE_DETECTION_HASH_FILE:-"${ARTIFACTS_CHANGE_DETECTION_HASH_FILE}"}# Name of the file that contains the hash code of the file list for change detection
21
-
CHANGE_DETECTION_HASH_FILE_PATH=${CHANGE_DETECTION_HASH_FILE_PATH:-"./${ARTIFACTS_DIRECTORY}/${CHANGE_DETECTION_HASH_FILE}"}#Path of the file that contains the hash code of the file list for change detection
21
+
CHANGE_DETECTION_HASH_FILE_PATH=${CHANGE_DETECTION_HASH_FILE_PATH:-"./${ARTIFACTS_DIRECTORY}/${CHANGE_DETECTION_HASH_FILE}"}#Default path of the file that contains the hash code of the file list for change detection. Can be overridden by a command line option.
22
22
23
23
# Function to display script usage
24
24
usage() {
25
-
echo"Usage: $0 [--readonly] [--paths <comma separated list of file and directory names> (default=artifacts)]"
25
+
echo"Usage: $0 [--readonly]"
26
+
echo" [--paths <comma separated list of file and directory names> (default=artifacts)]"
27
+
echo" [--hashfile <path to the file that contains the hash for change detection> (default=env var CHANGE_DETECTION_HASH_FILE_PATH)]"
0 commit comments