We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4023a47 commit 97c52e9Copy full SHA for 97c52e9
.github/scripts/download_packages.sh
@@ -386,7 +386,7 @@ if [ "$GOT_RPM" = "1" ]; then
386
if [ -d "$RHEL8_POOL" ] && [ "$(find "$RHEL8_POOL" -name "*.rpm" -type f | wc -l)" -gt 0 ]; then
387
echo "Creating main YUM repository"
388
mkdir -p "$MAIN_POOL"
389
- cp "$RHEL8_POOL"/* "$MAIN_POOL"/
+ cp "$RHEL8_POOL"/*.rpm "$MAIN_POOL"/ 2>/dev/null || true
390
pushd "$MAIN_POOL" >/dev/null
391
echo "Running createrepo_c for main repository in $(pwd)"
392
if createrepo_c .; then
0 commit comments