Commit 6685aac4 authored by Marc Cornellà's avatar Marc Cornellà
Browse files

dircycle: fix error on insert-cycledleft if dirstack is empty

parent 0b340bc3
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
# pushd -N: start counting from right of `dirs' output # pushd -N: start counting from right of `dirs' output
switch-to-dir () { switch-to-dir () {
[[ ${#dirstack} -eq 0 ]] && return
while ! builtin pushd -q $1 &>/dev/null; do while ! builtin pushd -q $1 &>/dev/null; do
# We found a missing directory: pop it out of the dir stack # We found a missing directory: pop it out of the dir stack
builtin popd -q $1 builtin popd -q $1
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment