From 82e75fd244defc3bcb45495c34f67b26956f58a1 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 27 Nov 2015 11:41:24 +1300 Subject: Fix up some mktemp(1) templates --- bash/bashrc.d/fnl.bash | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'bash') diff --git a/bash/bashrc.d/fnl.bash b/bash/bashrc.d/fnl.bash index 408778a2..fd8dfc97 100644 --- a/bash/bashrc.d/fnl.bash +++ b/bash/bashrc.d/fnl.bash @@ -23,9 +23,8 @@ fnl() { fi # Create a temporary directory or bail - local template dirname - template=$FUNCNAME.$1.XXXXX - if ! dirname=$(mktemp -dt -- "$template") ; then + local dirname + if ! dirname=$(mktemp -dt -- "$FUNCNAME"."$1".XXXXXX) ; then return fi -- cgit v1.2.3