diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-03-29 20:21:19 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-03-29 20:21:19 +0200 |
commit | 87aa02b47cbf3145fde7297302c8f549d062fbc7 (patch) | |
tree | c26de5f7c385874192fe4b9b23529880275c75ff | |
parent | baa0441be5d581a96d70fafc15a8d9b6e96c2fe2 (diff) | |
download | impressive-display-87aa02b47cbf3145fde7297302c8f549d062fbc7.tar.gz impressive-display-87aa02b47cbf3145fde7297302c8f549d062fbc7.tar.bz2 impressive-display-87aa02b47cbf3145fde7297302c8f549d062fbc7.zip |
Use $HOME/.impressive-display as temporary data directory.
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | impressive-display/bin/impressive-display | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 1bac097..805239b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ impressive-display (0.2.1) UNRELEASED; urgency=medium * Make cleanup trap more genuine: Really clean-up all created temporary files, make sure the impressive executable gets killed during clean-up. * Disable debugging option (set -x). + * Use $HOME/.impressive-display as temporary data directory. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Tue, 29 Mar 2016 20:14:17 +0200 diff --git a/impressive-display/bin/impressive-display b/impressive-display/bin/impressive-display index 8815d49..b962412 100755 --- a/impressive-display/bin/impressive-display +++ b/impressive-display/bin/impressive-display @@ -90,7 +90,7 @@ if [ -r $HOME/.impressive-display ]; then . $HOME/.impressive-display fi -workdir="$HOME/.impressive-display-data" +workdir="$HOME/.impressive-display" mkdir -p "$workdir" pdffile_previous="$workdir/impressive-pdffile-previous.pdf" pdffile_downloaded="$workdir/impressive-pdffile-downloaded.pdf" |