cppreference-doc icon indicating copy to clipboard operation
cppreference-doc copied to clipboard

ci(Makefile): Use system-agnostic path for bash.

Open sona-tau opened this issue 1 year ago • 0 comments

Currently the SHELL variable in the Makefile uses /bin/bash as a shell. This would normally work except for the users that have the bash executable installed somewhere else on their system. (Example: NixOS users, like me) Using /usr/bin/env bash will ensure that the bash executable is found on any system.

Simply changing this line solved this issue for me.

sona-tau avatar Jul 13 '24 00:07 sona-tau