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/get.d.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/repo/get.d.sh') diff --git a/plugins/repo/get.d.sh b/plugins/repo/get.d.sh index 46f8fd0..816cd31 100644 --- a/plugins/repo/get.d.sh +++ b/plugins/repo/get.d.sh @@ -25,7 +25,7 @@ ver='0.7.3' id="$1" dir="$2" -tmp=`tempfile` +tmp=`mktemp` "$RVS" get.f "$id" "$tmp" #install -d "$dir" -- cgit v1.2.3-2-g168b