Skip to content
Snippets Groups Projects
Commit 0fbf3325 authored by Leah Rowe's avatar Leah Rowe Committed by lbmkplaceholder
Browse files

correct a faulty if statement in build/release/src

parent 3e266650
Branches
Tags
No related merge requests found
......@@ -71,7 +71,7 @@ mkdir -p "${srcdir}"/blobs
# do not copy intel ME etc, but do copy ifd/gbe files
for i in t440p w541 xx20 xx30; do
for j in ifd gbe 16_ifd; do
if [ -f "blobs/${i}/${j}.bin"]; then
if [ -f "blobs/${i}/${j}.bin" ]; then
if [ ! -e "${srcdir}/blobs/${i}" ]; then
mkdir -p "${srcdir}/blobs/${i}"
fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment