Commit 15dc00a
Fix sorting bug in directories comparison
The original comparison function had an issue where it would
return true immediately when a_str was longer than b_str, without
checking the actual string comparison. This led to me getting
consistent build failures. The fix properly compares lengths first,
then falls back to lexicographic comparison only when lengths are
equal.1 parent 00a172a commit 15dc00a
2 files changed
+9
-5
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
287 | 287 | | |
288 | 288 | | |
289 | 289 | | |
290 | | - | |
291 | | - | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
| 293 | + | |
292 | 294 | | |
293 | 295 | | |
294 | 296 | | |
| |||
0 commit comments