From 0876d9dcc5b9f1870daa35a7241b52e241c9a04b Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Tue, 1 Aug 2023 11:20:07 +0530 Subject: [PATCH] feat: AUR testing entrypoint script --- tests/aur/entrypoint.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/aur/entrypoint.sh diff --git a/tests/aur/entrypoint.sh b/tests/aur/entrypoint.sh new file mode 100644 index 0000000..eacd09d --- /dev/null +++ b/tests/aur/entrypoint.sh @@ -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