Skip to content

Commit 852b039

Browse files
committed
update for arraylist pop changes
1 parent c699dc5 commit 852b039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ pub fn App(comptime Context: type) type {
186186
continue;
187187
} else if (std.mem.eql(u8, part, "..")) {
188188
// "cd up" is basically just removing the last pushed part
189-
_ = list.popOrNull();
189+
_ = list.pop();
190190
} else {
191191
// this is an actual "descend"
192192
try list.append(part);

0 commit comments

Comments
 (0)