diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/keyringer/functions | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/keyringer/functions b/lib/keyringer/functions index a278caf..53afd1d 100755 --- a/lib/keyringer/functions +++ b/lib/keyringer/functions @@ -153,6 +153,9 @@ function keyringer_set_tmpfile { echo "Press any key to continue, Ctrl-C to abort" read key tmp="$BASEDIR/tmp" + + # Just to be sure + keyringer_git_ignore 'tmp/*' fi # Determine template @@ -163,7 +166,6 @@ function keyringer_set_tmpfile { fi mkdir -p "$tmp" - keyringer_git_ignore 'tmp/*' if [ "$2" == "-d" ]; then TMPWORK="$(mktemp -d "$template")" |