]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
$VIMPRG is always empty when printed, escape it to make the message actual helpful
authorAndreas Louv <andreas@louv.dk>
Mon, 3 Apr 2023 22:07:13 +0000 (00:07 +0200)
committerAndreas Louv <andreas@louv.dk>
Mon, 3 Apr 2023 22:23:06 +0000 (00:23 +0200)
test/run_tests.sh

index b7bde7fb2f3426cc0c25d8de3fc5f33da550ca80..a68e0b9c826f259b0442d2fe70186c58ed9bb640 100755 (executable)
@@ -4,7 +4,7 @@
 
 VIMPRG=${VIMPRG:=$(which vim)}
 if [ -z "$VIMPRG" ]; then
-  echo "ERROR: $VIMPRG is not found in PATH"
+  echo "ERROR: vim (\$VIMPRG) is not found in PATH"
   exit 1
 fi