aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-07-15 00:04:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-07-15 00:04:33 +1200
commitce2699a6d29011bf515d6195a389433c445b3f73 (patch)
treefbebab39b7341728a2fdac1b2ce61be3ec8c98da /bin
parentAdd ax(1) (diff)
downloaddotfiles-ce2699a6d29011bf515d6195a389433c445b3f73.tar.gz
dotfiles-ce2699a6d29011bf515d6195a389433c445b3f73.zip
Remove -d option from edda(1) mktemp(1) call
Diffstat (limited to 'bin')
-rwxr-xr-xbin/edda2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/edda b/bin/edda
index 6e290cc5..e228b7d5 100755
--- a/bin/edda
+++ b/bin/edda
@@ -51,7 +51,7 @@ for arg ; do
done
# Duplicate stdin into a file, which we'll remove on exit
-stdin=$(mktemp -dt "$self".XXXXXX) || exit
+stdin=$(mktemp -t "$self".XXXXXX) || exit
cleanup() {
rm -f -- "$stdin"
}