summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-08-23 19:20:13 +0100
committerLeah Rowe <leah@libreboot.org>2023-08-23 19:20:13 +0100
commit52f3fd359e04caf9dd7bc89889dfc326f5ae9352 (patch)
treef6f29e00852d41470c1093cbdd08e16139a60837 /resources
parent57adbc6eb1f961ee9116904b667f30efb3f2de4f (diff)
blobs/download: copy dl_path, don't move it
moving it defeats the purpose of the caching mechanism that's in place. this should avoid unnecessary downloads Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'resources')
-rwxr-xr-xresources/scripts/update/blobs/download2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/update/blobs/download b/resources/scripts/update/blobs/download
index f3ba3052..9d623604 100755
--- a/resources/scripts/update/blobs/download
+++ b/resources/scripts/update/blobs/download
@@ -354,7 +354,7 @@ extract_e6400vga()
rm -Rf ${appdir}
mkdir -p "${appdir}"
- mv "${dl_path}" "${appdir}"
+ cp "${dl_path}" "${appdir}"
if [ "${e6400_vga_offset}" = "" ]; then
printf "E6400 VGA offset not defined\n"