fix(ci): drop -d from makepkg so makedepends get installed

makepkg -sfd skipped dependency checks, preventing `-s` from pulling
in rust/cargo (moonlock/moongreet/moonset) and go (sshfsc). Builds
failed with `cargo: command not found`. Remove `-d`; `-s` now installs
makedepends via pacman before the build.
This commit is contained in:
nevaforget 2026-04-20 09:39:11 +02:00
parent 7e3669c3df
commit 49c7031315

View File

@ -33,7 +33,7 @@ jobs:
echo "==> Building $pkg"
cd "$pkg"
makepkg -sfd --noconfirm
makepkg -sf --noconfirm
# Find the built package file
PKG_FILE=$(ls -t *.pkg.tar.zst 2>/dev/null | head -1)