Skip to content

Commit

Permalink
emulators/citra: unbreak fetch after 66e2037
Browse files Browse the repository at this point in the history
Failover between mirrors doesn't work if file exists but is different.

=> Attempting to fetch https://api.citra-emu.org/gamedb/?dummy=/citra/compatibility_list.json
[...]
=> SHA256 Checksum mismatch for citra/compatibility_list.json.
[...]
===>  Giving up on fetching files:  citra/compatibility_list.json

Reported by:	pkg-fallout
  • Loading branch information
jbeich committed Jan 1, 2022
1 parent 9d56cc6 commit 84b6971
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions emulators/citra/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ PORTNAME= citra
PORTVERSION= s20211218
PORTREVISION?= 0
CATEGORIES= emulators
MASTER_SITES= https://api.citra-emu.org/gamedb/?dummy=/:gamedb \
LOCAL/jbeich:gamedb
.if make(makesum)
MASTER_SITES= https://api.citra-emu.org/gamedb/?dummy=/:gamedb
.else
MASTER_SITES= LOCAL/jbeich:gamedb
.endif
DISTFILES= ${PORTNAME}/compatibility_list.json:gamedb
EXTRACT_ONLY= ${DISTFILES:N*\:gamedb:C/\:.*//}

Expand Down

0 comments on commit 84b6971

Please sign in to comment.