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
Describe the bug
The instructions to add a Debian repository have the wrong url to the release key.
Instead of e.g. https://download.opensuse.org/repositories/shells:/fish:/release:/3/Debian_10/Release.key they look like https://download.opensuse.org/repositories/shells:fish:release:3/Debian_10/Release.key - the "/" between "shells:" and "fish:" and "release:" are missing, causing it to 404.
The instructions look like
echo'deb http://download.opensuse.org/repositories/shells:/fish:/release:/3/Debian_9.0/ /'| sudo tee /etc/apt/sources.list.d/shells:fish:release:3.list
curl -fsSL https://download.opensuse.org/repositories/shells:fish:release:3/Debian_9.0/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/shells_fish_release_3.gpg > /dev/null
The repository line is correct, the Release.key line isn't.
Currently some instructions like openSUSE or Debian link to e.g.
/repositories/hardware:razer/ instead of /repositories/hardware:/razer/
with an extra slash but the version without the extra slash return HTTP
404 and therefore don't work.
Make sure to add the path fixup everywhere where the v[:repo] variable
is used.
FixesopenSUSE#1142FixesopenSUSE#1273
I think this issue has since been fixed. Though the PR has not been merged and though the URLs has not changed, it looks like the link no longer 404s. Probably a back-end change?
Describe the bug
The instructions to add a Debian repository have the wrong url to the release key.
Instead of e.g.
https://download.opensuse.org/repositories/shells:/fish:/release:/3/Debian_10/Release.key
they look likehttps://download.opensuse.org/repositories/shells:fish:release:3/Debian_10/Release.key
- the "/" between "shells:" and "fish:" and "release:" are missing, causing it to 404.The instructions look like
The repository line is correct, the Release.key line isn't.
It seems this is caused by
software-o-o/app/views/download/package.erb
Line 64 in ce99b8e
echo deb
part, but not the latercurl
part.To Reproduce
Steps to reproduce the behavior:
Expected behavior
The link is correct.
Environment (please complete the following information):
Additional context
N/A
The text was updated successfully, but these errors were encountered: