Skip to content

Commit f105a02

Browse files
committed
Cleanup Chromium profiles
1 parent 8efe84e commit f105a02

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

NodeChrome/chrome-cleanup.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ cleanup_stuck_chrome_processes() {
1212
cleanup_tmp_chrome_files() {
1313
echo -n "Deleting all Chrome files in /tmp... "
1414
find /tmp -name ".com.google.Chrome.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" +
15+
find /tmp -name ".org.chromium.Chromium.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" +
1516
echo "DONE."
1617
}
1718

NodeChromium/chrome-cleanup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ cleanup_stuck_chrome_processes() {
1010
}
1111

1212
cleanup_tmp_chrome_files() {
13-
echo -n "Deleting all Chrome files in /tmp... "
14-
find /tmp -name ".com.google.Chrome.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" +
13+
echo -n "Deleting all Chromium files in /tmp... "
14+
find /tmp -name ".org.chromium.Chromium.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" +
1515
echo "DONE."
1616
}
1717

0 commit comments

Comments
 (0)