summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Bogatov <KAction@gnu.org>2016-08-14 08:59:38 +0300
committerDmitry Bogatov <KAction@gnu.org>2016-08-14 08:59:38 +0300
commit83e89fae1a8e2fcc8207df4f5ff42cb554b95396 (patch)
tree8ed998eacd2877664d3f991615b2d1c378fbddf1
parent145adc0ad85434e92eaf3180dbda80c57e1417dc (diff)
Fix typo in mkdir option.
-rw-r--r--debian/changelog1
-rw-r--r--postrm-runit2
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 865bb98..a98ed70 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ dh-runit (1.5) UNRELEASED; urgency=medium
4 with other tools (supply dh_runit arguments on command line) and make 4 with other tools (supply dh_runit arguments on command line) and make
5 format extensible. See dh_runit(1). 5 format extensible. See dh_runit(1).
6 * Introduce support for automatic generation of log scripts. 6 * Introduce support for automatic generation of log scripts.
7 * Fix typo in mkdir option.
7 8
8 -- Dmitry Bogatov <KAction@gnu.org> Sat, 13 Aug 2016 11:40:10 +0300 9 -- Dmitry Bogatov <KAction@gnu.org> Sat, 13 Aug 2016 11:40:10 +0300
9 10
diff --git a/postrm-runit b/postrm-runit
index d07049c..6312aba 100644
--- a/postrm-runit
+++ b/postrm-runit
@@ -20,7 +20,7 @@ if [ "$1" = 'purge' ] ; then
20 # 20 #
21 # NOTE: Non-POSIX option is used. The day coreutils will no longer be essential, 21 # NOTE: Non-POSIX option is used. The day coreutils will no longer be essential,
22 # it will require a fix. 22 # it will require a fix.
23 rmdir --ignore-fail-on-nonempty "$supervise_dir" 23 rmdir --ignore-fail-on-no-nempty "$supervise_dir"
24 fi 24 fi
25 unset supervise_dir 25 unset supervise_dir
26fi 26fi