Skip to content

Commit

Permalink
ci: fix pkg path
Browse files Browse the repository at this point in the history
  • Loading branch information
gnattu committed Jul 8, 2024
1 parent f39247b commit 00fb01a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions msys2/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ mkdir -p /clang64/ffbuild/lib
cp /clang64/lib/libc++.a /clang64/ffbuild/lib/libc++.a

cd "$BUILDER_ROOT"/PKGBUILD
for pkg in */; do
if [ -d "$dir" ]; then
echo "Installing $dir"
cd "$dir"
for pkg in *; do
if [ -d "$pkg" ]; then
echo "Installing $pkg"
cd "$pkg"

(MINGW_ARCH=clang64 makepkg-mingw -sLfi --noconfirm --skippgpcheck) || exit $?

Expand Down

0 comments on commit 00fb01a

Please sign in to comment.