From c2111418821ac57bd6edaad17c6d78ea409e2a7e Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Fri, 21 Nov 2025 14:27:31 +0100 Subject: [PATCH] MT#60683 patch: Remove temporary import file When we are done we should cleanup the temporary file to avoid leaving cruft behind. Change-Id: Ic5887d348862d12711207263c69a94c22e4bc0b4 (cherry picked from commit a3033c52c03d084cc5c16a9936da1608cdb186e6) --- scripts/patch | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/patch b/scripts/patch index f5dd4973..e3fa9172 100755 --- a/scripts/patch +++ b/scripts/patch @@ -254,6 +254,7 @@ patch_import_customtt() { tail -n +3 "${tmp_patchtt}" > "${patchtt}" fi + rm -f "${tmp_patchtt}" rm -f "${diff_output}" }