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
Regression tests fail the second time through because Git for Windows removes the files pointed to by links when "git clean -fdx" is run. See git-for-windows/git#607.
To reproduce:
git clone --recursive https://github.com/boostorg/boost.git
cd boost
bootstrap.bat
b2 headers
At this point there is a subdirectory boost with links to library headers.
git clean -fdx
The links are deleted along with the header files they point to.
git submodule foreach git reset --hard
Puts the files back.
The text was updated successfully, but these errors were encountered:
Regression tests fail the second time through because Git for Windows removes the files pointed to by links when "git clean -fdx" is run. See git-for-windows/git#607.
To reproduce:
git clone --recursive https://github.com/boostorg/boost.git
cd boost
bootstrap.bat
b2 headers
At this point there is a subdirectory boost with links to library headers.
git clean -fdx
The links are deleted along with the header files they point to.
git submodule foreach git reset --hard
Puts the files back.
The text was updated successfully, but these errors were encountered: