diff --git a/test/aur/entrypoint.sh b/test/aur/entrypoint.sh index 1e925c2..bbdc1e3 100644 --- a/test/aur/entrypoint.sh +++ b/test/aur/entrypoint.sh @@ -7,7 +7,11 @@ root_dir=$(pwd) for package in "${aur_packages[@]}" do - cd "$package" && makepkg + echo "#############################" + echo "##### Building $package #####" + echo "#############################" + + cd "$package" && makepkg || exit 1 cd "$root_dir" done