Skip to content

Commit

Permalink
Update repository URL for Prebuilt-MPR
Browse files Browse the repository at this point in the history
  • Loading branch information
hwittenborn committed May 1, 2022
1 parent 2978306 commit 64b7b6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aurweb/routers/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async def package(request: Request, name: str) -> Response:
async with aiohttp.ClientSession() as session:
async with session.get(
"https://drone.hunterwittenborn.com/api/repos/makedeb/"
+ "prebuilt-mpr-v2/builds"
+ "prebuilt-mpr/builds"
) as response:
status = response.status
body = await response.text()
Expand Down
4 changes: 2 additions & 2 deletions templates/partials/packages/package_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ <h2>{{ package.Name }} {{ package.Version }}</h2>
</div>
<div class="right">
{% if ci_build is not none %}
<a href="https://drone.{{ hw_url }}/makedeb/prebuilt-mpr-v2/{{ ci_build }}">
<img class="badge" src="https://img.shields.io/drone/build/makedeb/prebuilt-mpr-v2/pkg/{{ package.Name }}?server=https%3A%2F%2Fdrone.hunterwittenborn.com&label=prebuilt-mpr">
<a href="https://drone.{{ hw_url }}/makedeb/prebuilt-mpr/{{ ci_build }}">
<img class="badge" src="https://img.shields.io/drone/build/makedeb/prebuilt-mpr/pkg/{{ package.Name }}?server=https%3A%2F%2Fdrone.hunterwittenborn.com&label=prebuilt-mpr">
</a>
{% endif %}
</div>
Expand Down

0 comments on commit 64b7b6e

Please sign in to comment.