diff options
author | Arian <arian.kulmer@web.de> | 2021-09-09 15:18:35 +0200 |
---|---|---|
committer | Arian <arian.kulmer@web.de> | 2021-09-09 15:18:35 +0200 |
commit | 302226bb77fbe1c93a2dc519bcda4cdab30d2f69 (patch) | |
tree | f4cf229b6fd2b15340c2635ff77d5560cafffbcc /extract_utils.sh | |
parent | 72d5bdfb73ca80089af4f243c252ecde210d357f (diff) |
extract_utils: Display the fixup hash when keeping pinned files
Change-Id: I32e288b1b06f103179d894d0a68a2ce34df31913
Diffstat (limited to 'extract_utils.sh')
-rw-r--r-- | extract_utils.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/extract_utils.sh b/extract_utils.sh index 786bcf7..a30be45 100644 --- a/extract_utils.sh +++ b/extract_utils.sh @@ -1589,7 +1589,11 @@ function extract() { fi if [ "$KEEP" = "1" ]; then - printf ' + keeping pinned file with hash %s\n' "${HASH}" + if [ "${FIXUP_HASH}" != "x" ]; then + printf ' + keeping pinned file with hash %s\n' "${FIXUP_HASH}" + else + printf ' + keeping pinned file with hash %s\n' "${HASH}" + fi else FOUND=false # Try custom target first. |