From 87ec67a47310b4a16049c9110b7df1e4da9af98c Mon Sep 17 00:00:00 2001 From: Zephyron Date: Mon, 22 Sep 2025 15:04:44 +1000 Subject: [PATCH] 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' --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eaca2eaa7..3f9abe7f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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: - |