make clean_dbs.sh executable

This commit is contained in:
Neil Gentleman 2015-11-07 12:29:59 -08:00
parent eda5d1a1ef
commit a1c46da5f2

2
clean_dbs.sh Normal file → Executable file
View file

@ -1,3 +1,3 @@
#!/usr/bin/env bash
# Cleans the DB from Server, Client and Test modules
find . -type f | grep -i cards.h2*.db | xargs rm -v
find . -type f -iname 'cards.h2*.db' -print -delete