jonkeane commented on code in PR #46026:
URL: https://github.com/apache/arrow/pull/46026#discussion_r2029302304
##########
ci/scripts/r_test.sh:
##########
@@ -130,7 +130,8 @@ echo "$SCRIPT" | ${R_BIN} --no-save
AFTER=$(ls -alh ~/)
if [ "$NOT_CRAN" != "true" ] && [ "$BEFORE" != "$AFTER" ]; then
- ls -alh ~/.cmake/packages
+ # Ignore ~/.TinyTex/ and ~/R/ because it has many files.
+ find ~ -path ~/.TinyTeX -prune -or -path ~/R/ -prune -or -print
Review Comment:
Thanks for this clean up. I have been bitten by this before and being
distracted by the long list when really it's one or two files that's the
problem.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]