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
It will be a simple fix. We can add a simple if condition with a regex to check if the URL is of the AUR, and if it is, we just need to append the /packages/ part to the URL.
For example,
URL opened by git open: https://aur.archlinux.org/git-open-git
Actual URL: https://aur.archlinux.org/packages/git-open-git
if [ $domain == "aur.archlinux.org" ]; then
domain="$domain/packages"
fi
The text was updated successfully, but these errors were encountered:
If an incorrect URL is opened, please provide the following so we can write a test:
Example clone URL:
https://aur.archlinux.org/git-open-git.git or ssh://[email protected]/git-open-git.git
Example branch name:
master
Expected web URL:
https://aur.archlinux.org/packages/git-open-git
It will be a simple fix. We can add a simple if condition with a regex to check if the URL is of the AUR, and if it is, we just need to append the
/packages/
part to the URL.For example,
URL opened by
git open
:https://aur.archlinux.org/git-open-git
Actual URL:
https://aur.archlinux.org/packages/git-open-git
The text was updated successfully, but these errors were encountered: