We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f2ddfdc + b7f8643 commit 8f07ffaCopy full SHA for 8f07ffa
.buildkite/steps/publish-rpm-package.sh
@@ -25,6 +25,8 @@ updaterepo() {
25
# Reuses the old package metadata, and add new packages with --pkglist.
26
# createrepo_c tests that pkglist is a _regular_ file, so we can't use
27
# a Bash process substitution i.e. <(find ...)
28
+ # --skip-stat prevents createrepo_c from trying to stat all the RPMs that
29
+ # aren't synced here.
30
# Note also that createrepo_c appends pkglist lines to the path it is given
31
# to find files. Busybox find (in Alpine) has no -printf verb, so...........
32
# go go gadget `awk`
@@ -34,6 +36,7 @@ updaterepo() {
34
36
--no-database \
35
37
--unique-md-filenames \
38
--retain-old-md-by-age=180d \
39
+ --skip-stat \
40
--update \
41
--pkglist "${pkglist}" \
42
--recycle-pkglist \
0 commit comments