Skip to content

Commit 68193b8

Browse files
committed
Fix smartstraps redirects using index.html instead of bare trailing slashes
Bare trailing-slash redirect paths like /guides/smartstraps/ cause a conflict during Jekyll write phase — the path gets created as a file by one redirect page, then a sub-path redirect tries to mkdir_p it as a directory. Using explicit index.html avoids this.
1 parent 52a32a1 commit 68193b8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/_data/redirects.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2656,19 +2656,19 @@
26562656
- /guides/hardware/talking-to-smartstraps/index.html
26572657
- /guides/
26582658
-
2659-
- /guides/smartstraps/
2659+
- /guides/smartstraps/index.html
26602660
- /guides/
26612661
-
2662-
- /guides/smartstraps/smartstrap-hardware/
2662+
- /guides/smartstraps/smartstrap-hardware/index.html
26632663
- /guides/
26642664
-
2665-
- /guides/smartstraps/smartstrap-protocol/
2665+
- /guides/smartstraps/smartstrap-protocol/index.html
26662666
- /guides/
26672667
-
2668-
- /guides/smartstraps/talking-to-pebble/
2668+
- /guides/smartstraps/talking-to-pebble/index.html
26692669
- /guides/
26702670
-
2671-
- /guides/smartstraps/talking-to-smartstraps/
2671+
- /guides/smartstraps/talking-to-smartstraps/index.html
26722672
- /guides/
26732673
-
26742674
- /guides/timeline/index.html

0 commit comments

Comments
 (0)