Skip to content

Commit c1aa783

Browse files
author
Felix Queißner
committed
Update to 0.14.0-dev.3213+53216d2f2
1 parent eb0ef69 commit c1aa783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub fn App(comptime Context: type) type {
180180
continue;
181181
} else if (std.mem.eql(u8, part, "..")) {
182182
// "cd up" is basically just removing the last pushed part
183-
_ = list.popOrNull();
183+
_ = list.pop();
184184
} else {
185185
// this is an actual "descend"
186186
try list.append(part);

0 commit comments

Comments
 (0)