Merge pull request #1 from SectorLabs/fix-rm-for-path-with-spaces

Fix chromium previous sessions removal
This commit is contained in:
Cristian Pop 2019-09-22 15:35:20 +03:00 committed by GitHub
commit 893a29dca3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ if [ -f .config/chromium/Default/Preferences ]; then
fi fi
# Remove notes of previous sessions, if any # Remove notes of previous sessions, if any
find .config/chromium/ -name "Last *" | xargs rm find .config/chromium/ -name "Last *" -exec rm {} +
# Start and detach Chromium # Start and detach Chromium
# http://peter.sh/experiments/chromium-command-line-switches/ # http://peter.sh/experiments/chromium-command-line-switches/