fix
Some checks failed
ci/woodpecker/push/pkgbuild/1 Pipeline was successful
ci/woodpecker/push/container Pipeline was successful
ci/woodpecker/push/pkgbuild/2 Pipeline failed

This commit is contained in:
JMARyA 2025-06-28 04:46:43 +02:00
parent 76d7118df8
commit 7aecfdd17c
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -93,12 +93,14 @@ pub fn build(image: &str, ci: bool) {
let mut docker_script = vec![
"set -e".to_string(),
"pacman-key --init".to_string(),
"pacman-key --populate archlinux".to_string(),
if Architecture::own() == Architecture::aarch64 {
"pacman-key --populate archlinux-arm".to_string()
} else {
String::new()
},
format!(
"pacman-key --populate archlinux{}",
if Architecture::own() == Architecture::aarch64 {
" && pacman-key --populate archlinux-arm".to_string()
} else {
String::new()
}
),
"pacman -Syu --noconfirm".to_string(),
"pacman -S --noconfirm rsync base-devel".to_string(),
];