From e1d8ad669c2263bcce17dcca0dfa178951eda19f Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Wed, 11 Mar 2026 15:52:10 +0100 Subject: [PATCH] build_library/catalyst: Do not clean up tmp files from catalyst run This is to give ci-automation a chance to scavenge the logs that are stored in the tmp directory. Signed-off-by: Krzesimir Nowak --- build_library/catalyst.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_library/catalyst.sh b/build_library/catalyst.sh index 3e792417be..3d2eb05180 100644 --- a/build_library/catalyst.sh +++ b/build_library/catalyst.sh @@ -242,13 +242,13 @@ build_stage() { fi info "Starting $stage" + # Clean up possible leftovers from possible previous runs + rm -rf "$TEMPDIR/$stage-${ARCH}-${FLAGS_version}" catalyst \ "${DEBUG[@]}" \ --verbose \ --config "$TEMPDIR/catalyst.conf" \ --file "$TEMPDIR/${stage}.spec" - # Catalyst does not clean up after itself... - rm -rf "$TEMPDIR/$stage-${ARCH}-${FLAGS_version}" ln -sf "$stage-${ARCH}-${FLAGS_version}.tar.bz2" \ "$BUILDS/$stage-${ARCH}-latest.tar.bz2" info "Finished building $target_tarball"