diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2020-04-28 13:15:10 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2020-04-28 13:15:10 +1200 |
commit | 1ebcd672f68c6e73266da2d844651a41961bc932 (patch) | |
tree | 1198d83e1afa2ab8c9dc63a2863a9e3bb76d8a18 | |
parent | Merge branch 'release/v8.21.0' (diff) | |
parent | Bump VERSION (diff) | |
download | dotfiles-8.21.1.tar.gz (sig) dotfiles-8.21.1.zip |
Merge branch 'hotfix/v8.21.1'v8.21.1
* hotfix/v8.21.1:
Correct misplaced `exit` call in .profile.d file
-rw-r--r-- | VERSION | 4 | ||||
-rw-r--r-- | sh/profile.d/systemd.sh | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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 |