We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assuming the following:
CDC_DIRS=(dir1 dir2) cdc repo
and the following directories both exist
dir1/repo dir2/repo
We need to ask the user which one to cd to. Currently, it will just cd to the first instance it finds.
cd
We should gather existing directories in an array, and if the array's size is > 1, prompt the user. Consider using the select command.
> 1
select
The text was updated successfully, but these errors were encountered:
After some thought, I would hate to be prompted every time. This is what I think should happen:
I say 💥 like it's an easy fix, but it'll be a fundamental change and will be a medium-difficulty effort.
Sorry, something went wrong.
evanthegrayt
No branches or pull requests
Assuming the following:
and the following directories both exist
We need to ask the user which one to
cd
to. Currently, it will justcd
to the first instance it finds.We should gather existing directories in an array, and if the array's size is
> 1
, prompt the user. Consider using theselect
command.The text was updated successfully, but these errors were encountered: