feat: AUR testing entrypoint script

This commit is contained in:
Erica Marigold 2023-08-01 11:20:07 +05:30 committed by GitHub
parent 4f263a19f3
commit 0876d9dcc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
tests/aur/entrypoint.sh Normal file
View file

@ -0,0 +1,9 @@
declare -a aur_packages=("lune-bin" "lune-git" "lune")
root_dir=$(pwd)
for package in "${aur_packages[@]}"
do
cd "$package" && makepkg
cd "$root_dir"
done