mirror of
https://git.citron-emu.org/citron/emulator
synced 2026-01-31 06:43:35 +00:00
Fix pacman database update in package-linux job
The package-linux job was failing because it tried to install wget without updating the pacman database first. Fixed by: - Added 'pacman -Sy --noconfirm' to update package database - Then install wget with 'pacman -S --noconfirm wget' This resolves the error: 'warning: database file for 'cachyos' does not exist (use '-Sy' to download)' 'error: target not found: wget'
This commit is contained in:
@@ -382,7 +382,8 @@ package-linux:
|
||||
before_script:
|
||||
- *get_version_info
|
||||
- *create_release_notes
|
||||
# Install AppImage tools
|
||||
# Update package database and install AppImage tools
|
||||
- pacman -Sy --noconfirm
|
||||
- pacman -S --noconfirm wget
|
||||
script:
|
||||
- |
|
||||
|
||||
Reference in New Issue
Block a user