aboutsummaryrefslogtreecommitdiff
path: root/bin/han
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-11-27 11:41:24 +1300
committerTom Ryder <tom@sanctum.geek.nz>2015-11-27 11:41:24 +1300
commit82e75fd244defc3bcb45495c34f67b26956f58a1 (patch)
tree775fb47f2ef4f48f16285fac72107a683023d1af /bin/han
parentRemove a now-inapplicable comment (diff)
downloaddotfiles-82e75fd244defc3bcb45495c34f67b26956f58a1.tar.gz
dotfiles-82e75fd244defc3bcb45495c34f67b26956f58a1.zip
Fix up some mktemp(1) templates
Diffstat (limited to 'bin/han')
-rwxr-xr-xbin/han2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/han b/bin/han
index 755710d5..7eea8b46 100755
--- a/bin/han
+++ b/bin/han
@@ -36,7 +36,7 @@ if ((BASH_VERSINFO[0] >= 4)) ; then
fi
# Create a temporary file and set up a trap to get rid of it.
-tmpdir=$(mktemp -dt "$self".XXXXX) || exit
+tmpdir=$(mktemp -dt "$self".XXXXXX) || exit
cleanup() {
rm -fr -- "$tmpdir"
}