Browse Source

vim: fix bash template

Maxim Likhachev 3 years ago
parent
commit
b342940f19
  1. 2
      etc/soft/nvim/template/sh.vim

2
etc/soft/nvim/template/sh.vim

@ -36,6 +36,6 @@ function die() { @@ -36,6 +36,6 @@ function die() {
DEPENDENCIES=()
for dependency in "${DEPENDENCIES[@]}"; do
command -V "$dependency" >&- 2>&1 || die "ERROR: The required '$dependency' command is not found."
command -V "$dependency" &>/dev/null || die "ERROR: The required '$dependency' command is not found."
done

Loading…
Cancel
Save