Skip to content

Commit 8bdda6c

Browse files
committed
Fix LTO cache eviction
1 parent 4ae576a commit 8bdda6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/build-kernel/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1845,7 +1845,7 @@ runs:
18451845
echo "Perform LTO cache eviction!"
18461846
if [ -d "$LDCACHE_DIR" ]; then
18471847
# Delete LTO cache files modified more than 180 minutes (3 hours) ago
1848-
find "$LDCACHE_DIR" -type f -mmin +180 -delete
1848+
find "$LDCACHE_DIR" -type f -amin +180 -delete
18491849
find "$LDCACHE_DIR" -type d -empty -delete
18501850
fi
18511851

0 commit comments

Comments
 (0)