Alacritty processor remove temporary files

Remember to remove any temporary files at the end of processing.
This commit is contained in:
Marty Oehme 2020-02-15 16:15:02 +01:00
parent f4991b11e1
commit 89fa02749c
No known key found for this signature in database
GPG Key ID: 0CCB0526EFB9611A
1 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,8 @@ save() {
# replace original file with new colorscheme-added version
cat "$tmptheme" "$tmpfile" >"$alacritty_conf"
rm "$tmptheme" "$tmpfile"
dbg_msg $app "Saved theme to $alacritty_conf"
}