diff options
| author | Paul C. Buetow (mars.fritz.box) <paul@buetow.org> | 2014-06-21 12:03:44 +0200 |
|---|---|---|
| committer | Paul C. Buetow (mars.fritz.box) <paul@buetow.org> | 2014-06-21 12:03:44 +0200 |
| commit | 14f51398ac528970bc3fb328feabc88bbd40ea0f (patch) | |
| tree | bf5cce08e7b34c5e4c6f763d7cd341b89f45625e | |
| parent | a412dbfea046fde16dd43b17299f258dc8d85a82 (diff) | |
New release
| -rw-r--r-- | .version | 2 | ||||
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rw-r--r-- | debian/files | 2 | ||||
| -rw-r--r-- | docs/netdiff.1 | 2 | ||||
| -rwxr-xr-x | src/netdiff | 2 |
5 files changed, 10 insertions, 4 deletions
@@ -1 +1 @@ -0.1.3 +0.1.4 diff --git a/debian/changelog b/debian/changelog index 3702cb4..f97e633 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +netdiff (0.1.4) stable; urgency=low + + * Bugfix: Cleaning up temp directory after the diff + + -- Paul Buetow <paul@buetow.org> Sat, 21 Jun 2014 12:03:17 +0200 + netdiff (0.1.3) stable; urgency=low * Typo fix in manpage diff --git a/debian/files b/debian/files index 74d60ce..196b7da 100644 --- a/debian/files +++ b/debian/files @@ -1 +1 @@ -netdiff_0.1.3_all.deb utils optional +netdiff_0.1.4_all.deb utils optional diff --git a/docs/netdiff.1 b/docs/netdiff.1 index 1df454c..850cce3 100644 --- a/docs/netdiff.1 +++ b/docs/netdiff.1 @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "NETDIFF 1" -.TH NETDIFF 1 "2014-06-21" "netdiff 0.1.3" "User Commands" +.TH NETDIFF 1 "2014-06-21" "netdiff 0.1.4" "User Commands" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/src/netdiff b/src/netdiff index a202c07..068573e 100755 --- a/src/netdiff +++ b/src/netdiff @@ -65,6 +65,6 @@ else RC=$? fi -[ -f ${TMPWHAT} ] && rm -rf ${TMPWHAT} +[ -d ${TMPWHAT} ] && rm -rf ${TMPWHAT} exit ${RC} |
