diff options
author | Leah Rowe <leah@libreboot.org> | 2025-10-04 08:20:27 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-10-04 08:20:27 +0100 |
commit | b7a9aad9fc700ddc38f0ce89f52b8fe7aa2fe86a (patch) | |
tree | ccd153f71f0086aa8a7a4d26abda036baeada155 /include | |
parent | a115679c57dd4cef3f98d1b753af082742569054 (diff) |
get.sh: delete tmp patch list when done
yet another oversight
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/get.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/get.sh b/include/get.sh index b373fda3..30813dc0 100644 --- a/include/get.sh +++ b/include/get.sh @@ -347,4 +347,6 @@ tmpclone() done < "$tmpclone_patchlist" || \ err "Can't read '$tmpclone_patchlist'" "tmpclone" "$@" + + x_ rm -f "$tmpclone_patchlist" } |