Skip to content

Commit

Permalink
fixes for windows build changes
Browse files Browse the repository at this point in the history
  • Loading branch information
soumith committed Jan 16, 2020
1 parent 0917968 commit d53c090
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion windows/upload/upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fi


pushd winwheels/conda
anaconda upload -u pytorch $package_name*.bz2
anaconda upload -u pytorch $package_name*.bz2 --force
popd


Expand Down
4 changes: 2 additions & 2 deletions windows/upload/win_reorganize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ for ((i=0;i<${#CUDA_VERSIONS[@]};++i)); do
git checkout $VISION_BRANCH_NAME
if [[ "$dtype" == "wheels"* ]]; then
mkdir -p $final_dir/whl/$CUDA_VERSION_FINAL
cp vision_$dtype/$CUDA_FOLDER/* $final_dir/whl/$CUDA_VERSION_FINAL/
cp $dtype/$CUDA_FOLDER/* $final_dir/whl/$CUDA_VERSION_FINAL/
else
mkdir -p $final_dir/conda
cp vision_$dtype/* $final_dir/conda/
cp $dtype/* $final_dir/conda/
fi
fi
done
Expand Down

0 comments on commit d53c090

Please sign in to comment.