fix(spoolman): add db dir to remove script

This commit is contained in:
Alessandro Maggi
2024-06-08 13:17:55 +02:00
parent e07d7c19ae
commit 229bab5d9a

View File

@@ -69,6 +69,12 @@ function remove_spoolman(){
ok_msg "Spoolman directory removed!"
fi
if [[ -d "${HOME}/.local/share/spoolman" ]]; then
status_msg "Removing spoolman db..."
rm -rf "${HOME}/.local/share/spoolman"
ok_msg "Spoolman db removed!"
fi
print_confirm "Spoolman successfully removed!"
}