Merge pull request #80 from SectorLabs/master

Fix chromium previous sessions removal
This commit is contained in:
Jarno Rantanen 2021-12-28 19:52:37 +02:00 committed by GitHub
commit 799e1b3df9
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
# Remove notes of previous sessions, if any
find .config/chromium/ -name "Last *" | xargs rm
find .config/chromium/ -name "Last *" -exec rm {} +
# Get URL from file (if set)
URL=""