From 75a516665b1cc16e6824f0f4912d2a7d4bab7088 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 28 Apr 2020 13:14:09 +1200 Subject: Correct misplaced `exit` call in .profile.d file This was closing my connection immediately when I logged in interactively to any machine without systemd! --- sh/profile.d/systemd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3 From d3d3a0ca1e62b2c77385c7c3b4cf50b4c37e9cc6 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 28 Apr 2020 13:15:01 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 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 -- cgit v1.2.3