mirror of
https://github.com/oh-my-fish/theme-bobthefish.git
synced 2026-03-02 03:49:25 +00:00
A refactor changed this block from a `set git_dir $PWD` to `set git_dir $real_pwd`, but as `real_pwd` is a "static" variable and not dynamically computed, this breaks within the `pushd` / `popd` flow. Instead of using `$real_pwd`, we need to compute the *current* directory by calling `__bobthefish_pwd` again. Fixes #249.