aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-09 02:38:45 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-09 02:38:45 +1200
commitc5cddb9b74095f3e678438bd73a2fa1d1498c820 (patch)
tree5febc80041a5a1e518a8ef11fd6a1473a2302709
parentMerge branch 'release/v5.25.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-5.25.1.tar.gz (sig)
dotfiles-5.25.1.zip
Merge branch 'hotfix/v5.25.1'v5.25.1
* hotfix/v5.25.1: Correct backwards runtime check
-rw-r--r--VERSION4
-rw-r--r--vim/vimrc2
2 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index 4110cfae..56093407 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v5.25.0
-Sat Jun 8 14:36:12 UTC 2019
+tejr dotfiles v5.25.1
+Sat Jun 8 14:38:22 UTC 2019
diff --git a/vim/vimrc b/vim/vimrc
index ff6ac208..f05f6716 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -96,7 +96,7 @@ endif
" for that particular context, but it's not really worth the extra complexity
" for such a niche situation.
"
-if $MYVIM != '' || $MYVIM =~# '[*?[|;&<>\r\n,]'
+if $MYVIM ==# '' || $MYVIM =~# '[*?[|;&<>\r\n,]'
echoerr 'Illegal user runtime path, halting user init'
finish
endif