We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d25723e commit e0399f0Copy full SHA for e0399f0
windows/internal/clone.bat
@@ -7,7 +7,10 @@ if exist "%NIGHTLIES_PYTORCH_ROOT%" (
7
rmdir /s /q pytorch
8
)
9
:: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy
10
- robocopy "%NIGHTLIES_PYTORCH_ROOT%" pytorch\ /e /np /nfl /sl
+ :: Without symlink handling, robocopy could get into an infinite loop with ittapi. With /sl,
11
+ :: symlink is ignored so functorch/docs/source/notebooks won't work. The correct option is
12
+ :: /xj to exclude junction point (what the heck does that even mean Microsoft?)
13
+ robocopy "%NIGHTLIES_PYTORCH_ROOT%" pytorch\ /e /np /nfl /xjd
14
cd pytorch
15
16
if exist "%NIGHTLIES_PYTORCH_ROOT%" goto submodule
0 commit comments