When updating the install list for files which have had local changes
merged with upgrade changes, don't try to compute the SHA256 hash of files which don't exist. Reported by: Jaakko Heinonen MFC after: 1 week
This commit is contained in:
parent
e1e2efa7be
commit
5e55dd6717
@ -2196,9 +2196,9 @@ EOF
|
||||
|
||||
# Store merged files.
|
||||
while read F; do
|
||||
V=`${SHA256} -q merge/new/${F}`
|
||||
|
||||
if [ -f merge/new/${F} ]; then
|
||||
V=`${SHA256} -q merge/new/${F}`
|
||||
|
||||
gzip -c < merge/new/${F} > files/${V}.gz
|
||||
echo "${F}|${V}"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user