images_build: Fix for non-local variable.
This commit is contained in:
parent
6ffb1731bb
commit
ee3a1882ae
1 changed files with 3 additions and 1 deletions
|
|
@ -428,13 +428,15 @@ ${__targets}"
|
|||
|
||||
fi
|
||||
|
||||
local __target
|
||||
|
||||
while read -r __target; do
|
||||
|
||||
if ! [ -e "${__target}" ]; then
|
||||
return 1
|
||||
fi
|
||||
|
||||
done < <(sed '/^$/d' <<< "${__targets}")
|
||||
done < <(sed '/^$/d' <<<"${__targets}")
|
||||
|
||||
if [ -e "${__hash_file}" ]; then
|
||||
__file_hash="$(cat "${__hash_file}")"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue