One of the commits on master introduced a bad file.
Find the commit and revert it using bisect.
- Run
. setup.sh(or.\setup.ps1in PowerShell)
git bisect startgit bisect badgit bisect good <commit-ish>git bisect goodgit bisect resetgit bisect run <cmd>test ! -f badfile(orgci . badfilein PowerShell) to test the existence of a filetest ! -f badfile;echo $?to output the result of the test to the console