Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
2261154
core: add Peekable::next_if_map
kennytm Jul 10, 2025
52063ae
stabilize path_add_extension
hanna-kruppe Aug 10, 2025
fc7de99
Ensure we emit an allocator shim when only some crate types need one
bjorn3 Aug 28, 2025
1d30900
Fix typo in comment
bjorn3 Aug 28, 2025
f4888c2
Correctly handle different crate types disagreeing if the allocator s…
bjorn3 Aug 28, 2025
a44b180
add `#[must_use]` to `array::repeat`
joboet Aug 31, 2025
0711bba
Ignore test when dylibs are not supported
bjorn3 Aug 31, 2025
5e9b655
Correct typo in `rustc_errors` comment
smoelius Sep 2, 2025
5b43244
Add LSX accelerated implementation for source file analysis
heiher Aug 28, 2025
a8537ab
Remove special implementation of `PartialEq` for `InvisibleOrigin` ou…
Kobzol Sep 1, 2025
5d9f8fc
llvm: nvptx: Layout update to match LLVM
maurer Sep 2, 2025
916b55e
Revert "Make `lto` and `linker-plugin-lto` work the same for `compile…
rcvalle Sep 2, 2025
5a9e2e4
docs(std): add missing closing code block fences in doc comments
AudaciousAxiom Sep 2, 2025
54a5450
rustdoc-search: add test case for indexing every item type
notriddle Sep 2, 2025
dd8df3b
htmldocck: fix a bug in relative paths / globs
notriddle Sep 2, 2025
af0d6f1
compiletest: cygwin follows windows in using PATH for dynamic libraries
jeremyd2019 Sep 2, 2025
d9dc20c
raw_vec.rs: Remove superfluous fn alloc_guard
btj Aug 22, 2025
0fa93a3
Disallow frontmatter in `--cfg` and `--check-cfg` arguments
Urgau Sep 2, 2025
df5896a
Rename `ToolRustc` to `ToolRustcPrivate`
Kobzol Sep 2, 2025
ea712b6
Rollup merge of #143725 - kennytm:peekable_next_if_map, r=jhpratt
jhpratt Sep 3, 2025
89468d2
Rollup merge of #145209 - hanna-kruppe:path_add_extension, r=tgross35
jhpratt Sep 3, 2025
4cfc9e7
Rollup merge of #145750 - btj:drop-alloc-guard, r=tgross35
jhpratt Sep 3, 2025
62bffaf
Rollup merge of #145962 - bjorn3:linkage_fixes, r=WaffleLapkin
jhpratt Sep 3, 2025
7cf7543
Rollup merge of #145963 - heiher:src-analysis-lsx, r=lqd
jhpratt Sep 3, 2025
2141b24
Rollup merge of #146054 - joboet:array-repeat-must_use, r=ibraheemdev
jhpratt Sep 3, 2025
549ba12
Rollup merge of #146090 - Kobzol:invisible-origin-eq, r=petrochenkov
jhpratt Sep 3, 2025
3299752
Rollup merge of #146120 - smoelius:patch-3, r=lqd
jhpratt Sep 3, 2025
ee12b1c
Rollup merge of #146127 - Kobzol:rename-tool-rustc, r=jieyouxu
jhpratt Sep 3, 2025
c58ec60
Rollup merge of #146131 - notriddle:rustdoc-search-load-itemtype-test…
jhpratt Sep 3, 2025
cce6231
Rollup merge of #146133 - rcvalle:rust-cfi-fix-145981, r=bjorn3
jhpratt Sep 3, 2025
dfe42c7
Rollup merge of #146134 - maurer:nvptx-sync, r=durin42
jhpratt Sep 3, 2025
67fa033
Rollup merge of #146136 - AudaciousAxiom:docs/missing-closing-code-bl…
jhpratt Sep 3, 2025
5fe8838
Rollup merge of #146137 - Urgau:cfg-disallow-frontmatter, r=fmease
jhpratt Sep 3, 2025
c88847f
Rollup merge of #146140 - jeremyd2019:patch-1, r=jieyouxu
jhpratt Sep 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
htmldocck: fix a bug in relative paths / globs
This bug only shows up when you run htmldocck in a directory other
than outdir, and also use globs. Never happened before, which is
why we're only seeing it now.
  • Loading branch information
notriddle committed Sep 2, 2025
commit dd8df3bf5f4984226101b600be231132edd820e8
2 changes: 1 addition & 1 deletion src/etc/htmldocck.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def get_absolute_path(self, path):
paths = list(Path(self.root).glob(path))
if len(paths) != 1:
raise FailedCheck("glob path does not resolve to one file")
path = str(paths[0])
return str(paths[0])
return os.path.join(self.root, path)

def get_file(self, path):
Expand Down
Loading