aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-11-26 13:29:41 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-11-26 13:29:41 -0200
commit4cf8a17cfbe2a0b2af659f4b75d16e746d976ab6 (patch)
tree0088e84186c9d6914aeb648c6b8c4d4a1dd8727a /lib
parent5ec8ec353ecd15b3d71479d2fcca3346059f955c (diff)
downloadkeyringer-4cf8a17cfbe2a0b2af659f4b75d16e746d976ab6.tar.gz
keyringer-4cf8a17cfbe2a0b2af659f4b75d16e746d976ab6.tar.bz2
Set .gitignore during initialization and when using tmp inside the repository
Diffstat (limited to 'lib')
-rwxr-xr-xlib/keyringer/functions4
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")"