Skip to content

Commit

Permalink
Reprepro may not work (ubuntu 22.04)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Jan 27, 2024
1 parent c4dcfff commit f3078ce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,10 @@ def uploadDebArtifacts():
COMPONENTS="main main/debug"
fi
mkdir -p /packages/%(prop:tarbuildnum)s/%(prop:buildername)s
cd .. && cp -r debs conf db dists pool /packages/%(prop:tarbuildnum)s/%(prop:buildername)s/
cd ..
for dir in debs conf db dists pool; do
[[ -d $dir ]] && cp -r $dir /packages/%(prop:tarbuildnum)s/%(prop:buildername)s/
done
cat << EOF > /packages/%(prop:tarbuildnum)s/%(prop:buildername)s/mariadb.sources
X-Repolib-Name: MariaDB
Types: deb
Expand Down

0 comments on commit f3078ce

Please sign in to comment.