We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3575732 commit f0b92dfCopy full SHA for f0b92df
.github/workflows/bench.yml
@@ -6,6 +6,8 @@ on:
6
jobs:
7
bench:
8
runs-on: ubuntu-latest
9
+ permissions:
10
+ pull-requests: write
11
steps:
12
- uses: taiki-e/checkout-action@v1
13
src/fs.rs
@@ -301,10 +301,7 @@ fn vpath(p: &Path) -> std::io::Result<VPath> {
301
base_path.insert(0, '/');
302
}
303
304
- return Ok(VPath::Virtual(VirtualInfo {
305
- base_path,
306
- virtual_segments,
307
- }));
+ return Ok(VPath::Virtual(VirtualInfo { base_path, virtual_segments }));
308
309
310
Ok(VPath::Native(PathBuf::from(normalized_path)))
0 commit comments