From 1aae71a1c7365d56aa6b0549bde6e8af07513f5f Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 14 Sep 2009 11:10:40 -0400 Subject: replace all uses of tempfile(1) with mktemp(1) in shell scripts --- plugins/repo/commit.d.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/repo/commit.d.sh') diff --git a/plugins/repo/commit.d.sh b/plugins/repo/commit.d.sh index 41715ea..e5d2456 100644 --- a/plugins/repo/commit.d.sh +++ b/plugins/repo/commit.d.sh @@ -23,7 +23,7 @@ ver='0.7.3' # commit.d DIRNAME dir="$1" -tmp=`tempfile` +tmp=`mktemp` cd "$dir" for file in *; do -- cgit v1.2.3-54-g00ecf