You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A repo with a trailing slash would fail, because everything to the right of the
last slash is used as the parent directory when cloning. If it wasn't there, it
wouldn't work.
Stripping trailing slashes now.
Signed-off-by: Brian Warner <brian@bdwarner.com>
When cloning a repo with a trailing slash, Facade can't find the .git directory. This is because cloning a repo like this:
puts the repo into a directory called reponame, but doing the same like this:
puts the repo into reponame/reponame.
This can be fixed by trimming the trailing slash.
The text was updated successfully, but these errors were encountered: