diff options
author | Leah Rowe <leah@libreboot.org> | 2023-08-05 21:24:28 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-08-05 21:24:28 +0100 |
commit | 22ee7f745d8745349fe080cc4e75494c05e3720a (patch) | |
tree | 5242a9576424ddfae46f2351bb87ff084b5470bb /resources/scripts/update | |
parent | cdd83ab1ce61aa2354184b698e000f8dfe2ba588 (diff) |
blobs/download: save ME file to correct location
blobdir is incorrect, and it means that the directory
will appear under blobs/, in this case. this was an
oversight on my part.
this behaviour did not break anything in practise, but
this patch makes the behaviour more consistent with rules.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'resources/scripts/update')
-rwxr-xr-x | resources/scripts/update/blobs/download | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/update/blobs/download b/resources/scripts/update/blobs/download index f50aa871..2368e8e9 100755 --- a/resources/scripts/update/blobs/download +++ b/resources/scripts/update/blobs/download @@ -237,7 +237,7 @@ extract_blob_intel_me() printf "Extracting and stripping Intel ME firmware\n" - innoextract ${dl_path} -d ${blobdir} \ + innoextract ${dl_path} -d ${appdir} \ || 7z x ${dl_path} -o${appdir} \ || unar "${dl_path}" -o "${appdir}" \ || fail 'Could not extract vendor update' |