aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-04-28 13:15:40 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-04-28 13:15:40 +1200
commit10646d7ad7809881b0043488598703dfb4a0d4a6 (patch)
treecf50475fb628d81a1c7bf48c73df2d91429a1014
parentRefine 'viminfo' option setting and comment (diff)
parentBump VERSION (diff)
downloaddotfiles-10646d7ad7809881b0043488598703dfb4a0d4a6.tar.gz
dotfiles-10646d7ad7809881b0043488598703dfb4a0d4a6.zip
Merge branch 'hotfix/v8.21.1' into develop
* hotfix/v8.21.1: Correct misplaced `exit` call in .profile.d file
-rw-r--r--VERSION4
-rw-r--r--sh/profile.d/systemd.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index e516a204..1256afde 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v8.21.0
-Mon, 27 Apr 2020 09:31:25 +0000
+tejr dotfiles v8.21.1
+Tue, 28 Apr 2020 01:14:50 +0000
diff --git a/sh/profile.d/systemd.sh b/sh/profile.d/systemd.sh
index 3c8bf04c..a6e1b707 100644
--- a/sh/profile.d/systemd.sh
+++ b/sh/profile.d/systemd.sh
@@ -1,4 +1,4 @@
# If systemctl is installed, use $VISUAL as its editor, not $EDITOR
-command -v systemctl >/dev/null 2>&1 || exit
+command -v systemctl >/dev/null 2>&1 || return
SYSTEMD_EDITOR=$VISUAL
export SYSTEMD_EDITOR