-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install docs #4
Comments
Interesting, I'll add a temporary patch until rust-lang/rust#14916 is resolved. |
Usually HTML docs get installed to /usr/share/doc//html/ AFAIK
|
In lieu of other documentation I figured we may as well skip the superfluous subdirectory. Perhaps I should change it in preparation for PDF and other docs... |
well, some have it and some don’t. those who don’t tend to have only a single for docdir in /usr/share/doc/*; do
if [[ -n "$(find "$docdir" -iname '*.html' -print -quit)" ]]; then
if [[ -d "$docdir/html" ]]; then
echo -e "$docdir/\e[0;32mhtml\e[0m"
else
echo "$docdir"
fi
fi
done yields for me:
|
Solid evidence, will change. |
Done (af19a8b) |
👍 |
install.sh
doesn’t installdoc/
as/usr/share/doc/rust/html/
like one would expectThe text was updated successfully, but these errors were encountered: