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.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/repo/commit.sh') diff --git a/plugins/repo/commit.sh b/plugins/repo/commit.sh index f76324e..7ee5934 100644 --- a/plugins/repo/commit.sh +++ b/plugins/repo/commit.sh @@ -31,7 +31,7 @@ fi out "+$type `pwd`/$file" ret=`"$RVS" commit.$type "$file"` -tmp=`tempfile` +tmp=`mktemp` cat << __EOF__ > "$tmp" name:$file hash:$ret -- cgit v1.2.3-2-g168b