"src/git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "c9bd4d433845921ddf7c0b0a50be3c7bdf7a80fc"
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