diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2009-09-14 11:10:40 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:15 -0600 |
commit | 1aae71a1c7365d56aa6b0549bde6e8af07513f5f (patch) | |
tree | ac2ff3b3c5448172f958fb1cdaaf3f8b6920319d /plugins/repo/commit.d.sh | |
parent | 941747dd168338cac09532eb8ce02105b52bed72 (diff) |
replace all uses of tempfile(1) with mktemp(1) in shell scripts
Diffstat (limited to 'plugins/repo/commit.d.sh')
-rw-r--r-- | plugins/repo/commit.d.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |