From a47d9c5e4681c3ceb117ac4396c9fccdb8e04c9a Mon Sep 17 00:00:00 2001 From: Kevin Stillhammer Date: Fri, 29 Mar 2024 12:06:33 +0100 Subject: [PATCH] fix local storage path cleanup documentation (#215) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c7f370..b54987c 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ It is recommended to cleanup the storage path to avoid running out of disk space One option is to use a cron job to delete files older than 7 days like below. ```yaml -0 0 * * * find /home/ubuntu/setup-rye-cache -type f -mtime +7 -exec rm -rf {} \; +0 0 * * * find /home/ubuntu/setup-rye-cache -type d -mtime +7 -exec rm -rf {} \; ``` ### API rate limit