Closed rcedgar closed 2 months ago
I believe this is fixed in the latest main branch by adding this to the start of gitver.bash:
gitver.bash
if [ ! -d ../.git ] ; then if [ ! -f gitver.txt ] ; then echo "0" > gitver.txt fi echo "Repo not found, git hash set to zero" exit 0 fi
Just compiled 5.1.0 on macOS and gitver.bash exited gracefully with this.
Moving to vcxproj_make.py for v5.2.
vcxproj_make.py
I believe this is fixed in the latest main branch by adding this to the start of
gitver.bash
: