kana / vim-vspec

Vim plugin: Testing framework for Vim script
http://www.vim.org/scripts/script.php?script_id=3012
222 stars 13 forks source link

Replace #!/bin/bash with #!/usr/bin/env bash #66

Closed mrcjkb closed 2 years ago

mrcjkb commented 2 years ago

#!/bin/bash is not platform independent (e.g. the scripts fail on NixOS, because bash is in /nix/store/<*>-bash...) Specifying #!/user/bin/env bash instead uses the $PATH to look for bash.

kana commented 2 years ago

Thank you!