This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository terminology.
View the commit online.
commit a4edc96d1f913b0a319e8410d4c93df7fbc4f447
Author: Boris Faure <[email protected]>
AuthorDate: Mon Sep 5 21:49:30 2022 +0200
add_color_scheme.sh: no need for temporary EET file
---
data/colorschemes/add_color_scheme.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/data/colorschemes/add_color_scheme.sh b/data/colorschemes/add_color_scheme.sh
index bb61ec0..91101d1 100755
--- a/data/colorschemes/add_color_scheme.sh
+++ b/data/colorschemes/add_color_scheme.sh
@@ -21,10 +21,9 @@ mkdir -p "$(dirname "$EET_FILE")"
# generate desc on a temporary file
TMP_DESC=$(mktemp "$NAME-DESC-XXXXXX")
-TMP_EET=$(mktemp "$NAME-EET-XXXXXX")
# trap to avoid creating orphan files
-trap 'rm -f "$TMP_DESC" "$TMP_EET"' INT TERM HUP EXIT
+trap 'rm -f "$TMP_DESC"' INT TERM HUP EXIT
NAME=$($GET_NAME "$INI")
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.