Skip to content

Commit

Permalink
fix local storage path cleanup documentation (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
eifinger authored Mar 29, 2024
1 parent 436a616 commit a47d9c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a47d9c5

Please sign in to comment.