commit a83ed99078efdb16a35121afbac8661d60db8976
parent bd92d51dc3a2ccad2347b8e272cde38aa987ceae
Author: Antoine Amarilli <a3nm@a3nm.net>
Date: Wed, 4 May 2022 23:38:38 +0200
Merge branch 'master' of https://a3nm.net/git/remailback
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/add.sh b/add.sh
@@ -18,7 +18,7 @@ then
exit 1
fi
-TEMPFILE=$(tempfile)
+TEMPFILE=$(mktemp)
cat > $TEMPFILE
# get_email_header command from https://a3nm.net/git/mybin
diff --git a/delete.sh b/delete.sh
@@ -6,7 +6,7 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd "$DIR"
-TEMPFILE=$(tempfile)
+TEMPFILE=$(mktemp)
cat > $TEMPFILE
# get_email_header command from https://a3nm.net/git/mybin
diff --git a/show.sh b/show.sh
@@ -6,7 +6,7 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd "$DIR"
-TEMPFILE=$(tempfile)
+TEMPFILE=$(mktemp)
cat > $TEMPFILE
# get_email_header command from https://a3nm.net/git/mybin