You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In scripts/bootstrap.sh line 55:
printf "Vagrant installed in %s\n" "$(which vagrant)"
^---^ SC2230: which is non-standard. Use builtin 'command -v' instead.
In scripts/bootstrap.sh line 120:
printf "Virtualbox installed in %s \n" "$(which VBoxManage)"
^---^ SC2230: which is non-standard. Use builtin 'command -v' instead.
The text was updated successfully, but these errors were encountered:
Shellcheck fails because of the which command
The text was updated successfully, but these errors were encountered: