From 1452b2cf83fddd3a0a26bf6a195e1ba021c62f3f Mon Sep 17 00:00:00 2001 From: Rafael Laboissière Date: Sun, 11 Dec 2022 16:09:01 +0100 Subject: Use mktemp instead of the deprecated tempfile command --- add-git-user | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'add-git-user') diff --git a/add-git-user b/add-git-user index 84660cb..2c4a60c 100755 --- a/add-git-user +++ b/add-git-user @@ -30,7 +30,7 @@ fi user=$1 ### Generate a temporary file with configuration for adduser -tmp=$(tempfile) +tmp=$(mktemp) ### Cleanup function cleanup(){ -- cgit v1.2.3