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
{{ message }}
This repository was archived by the owner on Nov 9, 2017. It is now read-only.
test: Work around lack of windows native symlink support in current msys
The current msys does not have support for NTFS symlinks. This includes in
'ln', 'test', 'rm'.
Here the commands are overridden to use windows cmd.exe instead of msys.
The implementation of test is quite expensive but works for the test.
'rm' needs to handle many scenarios. Symlinks are not supported at all by the
msys version.
* 'rm -rf' equivalent needs to first delete the files, and then the directories.
* Directory symbolic links need to use cmd.exe 'rmdir'
* file symbolic links need to use 'del'.
* A couple of places use 'rm -rf' on a mix of files and directories, so needs to
be split up.
Signed-off-by: Michael Geddes <[email protected]>
0 commit comments