Skip to content
Snippets Groups Projects
Commit bca981e2 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

be sure to use built package

parent 726f7814
No related branches found
No related tags found
No related merge requests found
Pipeline #15562 failed
...@@ -18,9 +18,16 @@ check_tag(){ ...@@ -18,9 +18,16 @@ check_tag(){
fi fi
} }
rm_package(){
pacman -Rdd ${1}
}
## skalibs ## skalibs
build_skalibs() { build_skalibs() {
rm_package "skalibs"
git clone https://github.com/skarnet/skalibs git clone https://github.com/skarnet/skalibs
cd skalibs cd skalibs
check_tag "${skalibs_tag}" check_tag "${skalibs_tag}"
...@@ -36,6 +43,7 @@ build_skalibs() { ...@@ -36,6 +43,7 @@ build_skalibs() {
## execline ## execline
build_execline() { build_execline() {
rm_package "execline"
git clone https://github.com/skarnet/execline git clone https://github.com/skarnet/execline
cd execline cd execline
check_tag "${execline_tag}" check_tag "${execline_tag}"
...@@ -54,6 +62,7 @@ build_execline() { ...@@ -54,6 +62,7 @@ build_execline() {
## s6 ## s6
build_s6() { build_s6() {
rm_package "s6"
git clone https://github.com/skarnet/s6 git clone https://github.com/skarnet/s6
cd s6 cd s6
check_tag "${s6_tag}" check_tag "${s6_tag}"
...@@ -70,6 +79,7 @@ build_s6() { ...@@ -70,6 +79,7 @@ build_s6() {
## oblibs ## oblibs
build_oblibs() { build_oblibs() {
rm_package "oblibs"
git clone https://git.obarun.org/obarun/oblibs git clone https://git.obarun.org/obarun/oblibs
cd oblibs cd oblibs
check_tag "${oblibs_tag}" check_tag "${oblibs_tag}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment