Inconsistent behavior between [p]repo add and other commands #6371
Labels
Category: Cogs - Downloader
This is related to the Downloader cog.
Status: Needs Triage
This has not been labeled or discussed for handling yet.
Type: Bug
Unexpected behavior, result, or exception. In case of PRs, it is a fix for the foregoing.
What Red version are you using?
3.5.9
Cog name
Downloader
Command name
repo
What happened?
When running
[p]repo add
, if the name used is the same as an already installed repo but with different casing, the bot says a repo with that name already exists. When running[p]repo del
, the correct casing must be used, or the bot will say a repo with that name does not exist. It is confusing that a repo can be stated to exist with one command, but not exist with another. Similar case-sensitive parsing happens with[p]cog install
, and likely other commands.How can we reproduce this error?
[p]repo add test https://github.com/Flame442/FlameCogs
[p]repo add TEST https://github.com/Flame442/FlameCogs
-> already exists[p]repo del TEST https://github.com/Flame442/FlameCogs
-> does not existAnything else?
Downloader stores repos in folders that should be interpreted case insensitively. The
Repo
converter should be updated to be able to match an existing repo regardless of the specific casing used.[p]repo add
eventually reaches this function, which checks if the path exists case insensitively, rather than just if the repo exists in._repos
.Red-DiscordBot/redbot/cogs/downloader/repo_manager.py
Lines 187 to 189 in 975c000
The text was updated successfully, but these errors were encountered: