-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a960ec
commit 3c6a58c
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3c6a58c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fredrikekre I think this is causing the PDF docs not to update (JuliaLang/julia#36363). The
build_*
functions copy to$JULIA_DOCS
, but then thisgit reset --hard
will restore them to the last commit. I think the reason why1.6.0-DEV.0
was able to deploy after this commit is becausegit reset --hard
doesn't touch untracked files.I guess this change was necessary to avoid some race conditions / merge conflicts? Do you see any better solution other than just building the PDFs into a separate directory and copying them over to
$JULIA_DOCS
here incommit()
after thegit reset
?