mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
feat: AUR testing entrypoint script
This commit is contained in:
parent
4f263a19f3
commit
0876d9dcc5
1 changed files with 9 additions and 0 deletions
9
tests/aur/entrypoint.sh
Normal file
9
tests/aur/entrypoint.sh
Normal 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
|
Loading…
Reference in a new issue