Skip to content

Commit

Permalink
Fix log cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
dubo-dubon-duponey committed Mar 20, 2024
1 parent 2e876c5 commit 51eccf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion context/runtime/boot/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ log::ingest(){
log::clean(){
local frequency="$1"
while true; do
find ./data/ -iname "*log.*.txt" -exec rm {} \;
find "$XDG_DATA_HOME"/roon/data/ -iname "*log.*.txt" -exec rm {} \;
sleep "$frequency"
done
}
Expand Down

0 comments on commit 51eccf0

Please sign in to comment.