Unverified Commit d11556af authored by Andrey Talman's avatar Andrey Talman Committed by GitHub
Browse files

Fix for cygpath windows issue (#6513)

parent 528651a0
...@@ -97,7 +97,7 @@ if [[ "$OSTYPE" == "msys" ]]; then ...@@ -97,7 +97,7 @@ if [[ "$OSTYPE" == "msys" ]]; then
"$script_dir/windows/internal/vc_env_helper.bat" "$script_dir/windows/internal/build_frcnn.bat" $PARALLELISM "$script_dir/windows/internal/vc_env_helper.bat" "$script_dir/windows/internal/build_frcnn.bat" $PARALLELISM
mv fasterrcnn_resnet50_fpn.pt Release mv fasterrcnn_resnet50_fpn.pt Release
cd Release cd Release
export PATH=$(cygpath "C:/Program Files (x86)/torchvision/bin"):$(cygpath $TORCH_PATH)/lib:$PATH export PATH=$(cygpath -w "C:/Program Files (x86)/torchvision/bin"):$(cygpath -w $TORCH_PATH)/lib:$PATH
else else
make -j$PARALLELISM make -j$PARALLELISM
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment